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

View File

@ -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();