notification: Fix reply from notification.

The function "by_subject" is now being updated to the "by_topic" in
the webapp.

Fixes: #624.
This commit is contained in:
Akash Nimare
2019-01-08 11:30:57 +05:30
parent 5f23c8570b
commit 3e73511357

View File

@@ -141,7 +141,7 @@ function parseReply(reply) {
function setupReply(id) {
const { narrow } = window;
narrow.by_subject(id, { trigger: 'notification' });
narrow.by_topic(id, { trigger: 'notification' });
}
module.exports = {