show notification for @-mentions in muted topics and muted streams

(imported from commit 7c6303a083f1f7d364920462e42360b71d7159b5)
This commit is contained in:
acrefoot 2013-12-09 17:13:33 -05:00
parent e1a9a71759
commit 3542b63bb7
1 changed files with 4 additions and 3 deletions

View File

@ -321,6 +321,10 @@ function message_is_notifiable(message) {
if (message.sent_by_me) {
return false;
}
// @-mentions take precent over muted-ness. See Trac #1929
if (exports.speaking_at_me(message)) {
return true;
}
if ((message.type === "stream") &&
!stream_data.in_home_view(message.stream)) {
return false;
@ -334,9 +338,6 @@ function message_is_notifiable(message) {
if (message.type === "private") {
return true;
}
if (exports.speaking_at_me(message)) {
return true;
}
if ((message.type === "stream") &&
subs.receives_notifications(message.stream)) {
return true;