Reconnect on pulseaudio restart / after suspend

This commit is contained in:
futpib 2018-11-16 00:24:48 +03:00
parent 0e4b685382
commit cd1dcce8ee

View File

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