only show alert if on the same category

This commit is contained in:
Barış Soner Uşaklı
2017-11-07 13:39:13 -05:00
parent 9eabb1dc94
commit 2ec54166f7

View File

@@ -48,6 +48,10 @@ define('forum/recent', ['forum/infinitescroll', 'components'], function (infinit
return;
}
if (ajaxify.data.template.category && parseInt(ajaxify.data.cid, 10) !== parseInt(data.cid, 10)) {
return;
}
newTopicCount += 1;
Recent.updateAlertText();
}
@@ -74,6 +78,10 @@ define('forum/recent', ['forum/infinitescroll', 'components'], function (infinit
return;
}
if (ajaxify.data.template.category && parseInt(ajaxify.data.cid, 10) !== parseInt(post.topic.cid, 10)) {
return;
}
if (ajaxify.data.selectedFilter && ajaxify.data.selectedFilter.filter === 'watched') {
socket.emit('topics.isFollowed', post.tid, function (err, isFollowed) {
if (err) {