aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-11-10 20:30:55 +0100
committerMario <mario@mariovavti.com>2017-11-11 20:28:00 +0100
commitebee3e208c0f0bb8c6b84d05a4c9005bf229f054 (patch)
tree8d1f7f7672dbef7355b79d64abb23976844e7bad /view/js/main.js
parentf8cf68ab53f4a287162db556568f8e651f8d42a1 (diff)
downloadvolse-hubzilla-ebee3e208c0f0bb8c6b84d05a4c9005bf229f054.tar.gz
volse-hubzilla-ebee3e208c0f0bb8c6b84d05a4c9005bf229f054.tar.bz2
volse-hubzilla-ebee3e208c0f0bb8c6b84d05a4c9005bf229f054.zip
revert back to get the mid from enotify - otherwise we can not distinct between posts and likes
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js
index ffea1b75c..e231dac60 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -959,9 +959,9 @@ function notify_popup_loader(notifyType) {
$("." + notifyType + "-update").html(data.notify.length);
$(data.notify).each(function() {
- html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass);
+ html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid);
$("#navbar-" + notifyType + "-menu").append(html);
- html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass);
+ html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid);
$("#nav-" + notifyType + "-menu").append(html);
});