Reconnect after suspend

This commit is contained in:
futpib 2018-11-16 15:04:32 +03:00
parent cd1dcce8ee
commit 74ab558905

View File

@ -107,6 +107,10 @@ module.exports = store => {
getInfo(type, index); getInfo(type, index);
}) })
.on('change', (type, index) => { .on('change', (type, index) => {
if (type === 'server') {
pa.end(); // Reconnect
return;
}
store.dispatch(pulseActions.change({ type, index })); store.dispatch(pulseActions.change({ type, index }));
getInfo(type, index); getInfo(type, index);
}) })