mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-24 15:16:07 +09:00
refactor: use ===
This commit is contained in:
parent
62ab5b4015
commit
74d968585a
@ -100,9 +100,9 @@ export function connectStream(user: any, channel: string, listener: (message: Re
|
||||
ws.on('open', () => {
|
||||
ws.on('message', data => {
|
||||
const msg = JSON.parse(data.toString());
|
||||
if (msg.type == 'channel' && msg.body.id == 'a') {
|
||||
if (msg.type === 'channel' && msg.body.id === 'a') {
|
||||
listener(msg.body);
|
||||
} else if (msg.type == 'connected' && msg.body.id == 'a') {
|
||||
} else if (msg.type === 'connected' && msg.body.id === 'a') {
|
||||
res(ws);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user