1
0
mirror of https://github.com/scsibug/nostr-rs-relay.git synced 2025-04-16 18:39:55 -04:00

fix: syntax error

This commit is contained in:
slaninas 2022-08-22 05:11:13 -07:00 committed by Greg Heartsfield
parent 4fe6191aa3
commit 77892b2064

@ -478,7 +478,7 @@ async fn nostr_server(
// send responses automatically.
continue;
},
Some(Err(WsError::Capacity(MessageTooLong(size, max_size)))) => {
Some(Err(WsError::Capacity(MessageTooLong{size, max_size}))) => {
ws_stream.send(
make_notice_message(
&format!("message too large ({} > {})",size, max_size))).await.ok();