don't dispatch ping to store (#188)

This commit is contained in:
Slava 2019-02-13 11:37:23 +02:00 committed by Metin Seylan
parent 6d5c7983d1
commit 207a0a13bd

View file

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