do not update badge if the room is a console

pull/34/head
Zlatin Balevsky 2019-11-15 13:50:13 +00:00
parent b1e5b40800
commit ecb19a8412
1 changed files with 2 additions and 1 deletions

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)
}
}