This commit is contained in:
choelzl 2022-02-07 03:58:40 +01:00
parent b248e20669
commit 317754a3b9
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -95,8 +95,9 @@ $(function () {
}) })
socket.getDBValue('get_current_stream_info_counts', 'panelData', 'stream', (e)=>{ socket.getDBValue('get_current_stream_info_counts', 'panelData', 'stream', (e)=>{
let data = JSON.parse(e.panelData); let data = JSON.parse(e.panelData);
countFollow = data.followers; countFollow = data.followers || countFollow;
countSub = 0; countSub = 0;
refreshUI();
}) })
} }
}catch(e) {console.log(e)} }catch(e) {console.log(e)}