Update last seen indicator even if window doesn't have focus

FREEBIE
pull/749/head
Scott Nonnenberg 8 years ago
parent 72019eb79c
commit e023c58883

@ -327,7 +327,10 @@
this.model.messageCollection.add(message, {merge: true});
message.setToExpire();
if (!this.isHidden() && window.isFocused()) {
if (!this.isHidden() && !window.isFocused()) {
this.updateLastSeenIndicator();
}
else if (!this.isHidden() && window.isFocused()) {
this.removeLastSeenIndicator();
this.markRead();
}

Loading…
Cancel
Save