fixes-120

This commit is contained in:
Tony Rewin 2023-10-02 23:30:07 +03:00
parent fb7c9f43dc
commit e6880f4c8c

View File

@ -150,7 +150,7 @@ async fn sse_handler(
}
}
let _: () = match con.srem("authors-online", &author_id).await {
let _ = match con.srem::<&str, &i32, usize>("authors-online", &author_id).await {
Ok(_) => (),
Err(e) => {
eprintln!("Failed to remove author from online list: {}", e);