do not update badge if the room is a console

This commit is contained in:
Zlatin Balevsky
2019-11-15 13:50:13 +00:00
parent b1e5b40800
commit ecb19a8412

View File

@ -193,7 +193,8 @@ class ChatRoomController {
runInsideUIAsync {
view.roomTextArea.append(toDisplay)
trimLines()
view.chatNotificator.onMessage(mvcGroup.mvcId)
if (!model.console)
view.chatNotificator.onMessage(mvcGroup.mvcId)
}
}