diff options
Diffstat (limited to 'src/auth.rs')
-rw-r--r-- | src/auth.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/auth.rs b/src/auth.rs index 51b2e6a..2fcc7a6 100644 --- a/src/auth.rs +++ b/src/auth.rs | |||
@@ -100,7 +100,10 @@ async fn authorize( | |||
100 | a: decoded.claims.puk, | 100 | a: decoded.claims.puk, |
101 | }) | 101 | }) |
102 | } | 102 | } |
103 | Err(e) => return Err(warp::reject::custom(RateLimited)), | 103 | Err(e) => { |
104 | println!("HELLOO"); | ||
105 | return Err(warp::reject::custom(RateLimited)); | ||
106 | } | ||
104 | } | 107 | } |
105 | } | 108 | } |
106 | 109 | ||