diff --git a/src/common/bus.ts b/src/common/bus.ts index 76da2c660..9b35e400d 100644 --- a/src/common/bus.ts +++ b/src/common/bus.ts @@ -24,7 +24,7 @@ export default class Bus { if (listeners) { listeners.forEach((func) => func()); - this.emitted.add(evtName); } + this.emitted.add(evtName); } }