From: Felix Ableitner Date: Mon, 3 Jul 2023 09:45:53 +0000 (+0200) Subject: Fix formatting for latest nightly (#ref 3467) X-Git-Url: http://these/git/%24%7Bsubmission.url%7D?a=commitdiff_plain;h=fc60b82f8264301202d6c118e8bf3c1de3f49968;p=lemmy.git Fix formatting for latest nightly (#ref 3467) --- diff --git a/crates/utils/src/rate_limit/rate_limiter.rs b/crates/utils/src/rate_limit/rate_limiter.rs index 12f264fa..cea05bc0 100644 --- a/crates/utils/src/rate_limit/rate_limiter.rs +++ b/crates/utils/src/rate_limit/rate_limiter.rs @@ -195,7 +195,9 @@ impl RateLimitStorage { /// Remove buckets older than the given duration pub(super) fn remove_older_than(&mut self, duration: Duration, now: InstantSecs) { // Only retain buckets that were last used after `instant` - let Some(instant) = now.to_instant().checked_sub(duration) else { return }; + let Some(instant) = now.to_instant().checked_sub(duration) else { + return; + }; let is_recently_used = |group: &RateLimitedGroup<_>| { group