diff --git a/web/overlay/index.js b/web/overlay/index.js index f5790bf..6b823dc 100644 --- a/web/overlay/index.js +++ b/web/overlay/index.js @@ -95,8 +95,9 @@ $(function () { }) socket.getDBValue('get_current_stream_info_counts', 'panelData', 'stream', (e)=>{ let data = JSON.parse(e.panelData); - countFollow = data.followers; + countFollow = data.followers || countFollow; countSub = 0; + refreshUI(); }) } }catch(e) {console.log(e)}