diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-06-02 22:11:11 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-06-02 22:11:11 +0200 |
commit | 8189408190333b4f6ac45f98623be0d1db8b9462 (patch) | |
tree | eb10d322eb63456bc7685c33db3ca627abf1cecf /view/js/main.js | |
parent | db0a3a753420e8722776094334759dd4ff61fc77 (diff) | |
download | volse-hubzilla-8189408190333b4f6ac45f98623be0d1db8b9462.tar.gz volse-hubzilla-8189408190333b4f6ac45f98623be0d1db8b9462.tar.bz2 volse-hubzilla-8189408190333b4f6ac45f98623be0d1db8b9462.zip |
finalize filters and forum notifications
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 7a8ddfe28..45c412296 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -509,7 +509,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); + 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); notify_menu.append(html); }); @@ -828,6 +828,7 @@ function updateInit() { }); handleNotificationsItems('forums', fnotifs); } + } if(! src) { |