fix: view.websocket (object length fixes '/event' notification count)

This commit is contained in:
xdrm-brackets 2017-12-08 00:06:34 +01:00 committed by SeekDaSky
parent 97c6dcf8be
commit bdf119700c
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ window.wsc_event = wsc.channel('event/31').listen(function(msg, err){
// {3} Add notification count if not already on page //
if( router.app.$route.path != '/event' )
gstore.data.notif.event.count += msg.add.length;
gstore.data.notif.event.count += Object.keys(msg.add).length;
}