Skip to content
Snippets Groups Projects
Commit 52feba0e authored by syuilo's avatar syuilo
Browse files

Refactor: Use ===

parent a1076c31
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment