mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-03-17 08:50:54 -04:00
Fix logging of messages that are binary before closing their connection (#25361)
This commit is contained in:
parent
4c9406bdb0
commit
c81f59583c
@ -1209,7 +1209,7 @@ const startServer = async () => {
|
||||
|
||||
ws.on('message', (data, isBinary) => {
|
||||
if (isBinary) {
|
||||
log.debug('Received binary data, closing connection');
|
||||
log.warn('socket', 'Received binary data, closing connection');
|
||||
ws.close(1003, 'The mastodon streaming server does not support binary messages');
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user