don't dispatch ping to store

This commit is contained in:
slav 2019-02-12 11:07:02 +02:00
parent 60d38b78bc
commit 02a6c9e364

View file

@ -77,7 +77,9 @@ export default class EventEmitter{
} }
this.dispatchStore(event, args); if(event !== 'ping' && event !== 'pong') {
this.dispatchStore(event, args);
}
} }