Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 91da184

Browse files
committed
fix over-linting
1 parent dbed2c5 commit 91da184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/views/chatVw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ module.exports = baseVw.extend({
206206
this.markConvoAsRead(model.get('guid'));
207207

208208
// mark as read on chat head
209-
if (convoMd == this.chatConversationsCl.get(model.get('guid'))) {
209+
if (convoMd = this.chatConversationsCl.get(model.get('guid'))) { // eslint-disable-line no-cond-assign
210210
convoMd.set('unread', 0);
211211
}
212212

0 commit comments

Comments
 (0)