aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-11-30 19:03:14 -0800
committerzotlabs <mike@macgirvin.com>2018-11-30 19:03:14 -0800
commitc6acb6191ca558fce121e7df26a8aba88beac2d9 (patch)
treed1f4abe408046aff8b76c0b81d16e313a3fe90fd /view/js
parent6cade7d935a489349c56165139796bd2f9cf9be6 (diff)
downloadvolse-hubzilla-c6acb6191ca558fce121e7df26a8aba88beac2d9.tar.gz
volse-hubzilla-c6acb6191ca558fce121e7df26a8aba88beac2d9.tar.bz2
volse-hubzilla-c6acb6191ca558fce121e7df26a8aba88beac2d9.zip
allow notification filtering by name or addr
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 085bc8d0d..f4bfd413b 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -544,7 +544,7 @@ function handleNotificationsItems(notifyType, data) {
notify_menu.html('');
$(data).each(function() {
- html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top,this.unseen,this.private_forum);
+ html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.addr,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top,this.unseen,this.private_forum);
notify_menu.append(html);
});