]> Untitled Git - lemmy.git/commitdiff
Fix rate limit error messages. Fixes #2428 (#2449)
authorDessalines <dessalines@users.noreply.github.com>
Mon, 26 Sep 2022 14:40:42 +0000 (10:40 -0400)
committerGitHub <noreply@github.com>
Mon, 26 Sep 2022 14:40:42 +0000 (10:40 -0400)
* Fix rate limit error messages. Fixes #2428

* Simplify

crates/websocket/src/chat_server.rs

index 8dcc81d1c1acbe5bc63357bb211bed073f1772e2..b0dcabc9c54adc555d0b6a6871edb81ddc541525 100644 (file)
@@ -498,8 +498,8 @@ impl ChatServer {
       if passed {
         fut.await
       } else {
-        // if rate limit was hit, respond with empty message
-        Ok("".to_string())
+        // if rate limit was hit, respond with message
+        Err(LemmyError::from_message("rate_limit_error"))
       }
     }
   }