mirror of
https://github.com/misskey-dev/misskey
synced 2024-12-01 00:08:35 +09:00
Refactor: Use ===
This commit is contained in:
parent
a1076c3108
commit
52feba0e3a
@ -117,7 +117,7 @@ export default class Connection {
|
||||
|
||||
this.subscribingNotes[payload.id]++;
|
||||
|
||||
if (this.subscribingNotes[payload.id] == 1) {
|
||||
if (this.subscribingNotes[payload.id] === 1) {
|
||||
this.subscriber.on(`noteStream:${payload.id}`, this.onNoteStreamMessage);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user