This commit is contained in:
Tony Rewin 2023-10-02 23:27:17 +03:00
parent fd22aeb518
commit 13e37319a2

View File

@ -108,7 +108,7 @@ async fn sse_handler(
}
};
let _: () = match con.sadd("authors-online", &author_id).await {
let _ = match con.sadd("authors-online", &author_id).await {
Ok(_) => (),
Err(e) => {
eprintln!("Failed to add author to online list: {}", e);