]> git.mxchange.org Git - friendica.git/commitdiff
Make Notification bubble work again
authornupplaPhil <admin@philipp.info>
Sat, 25 Jan 2020 16:25:11 +0000 (17:25 +0100)
committernupplaPhil <admin@philipp.info>
Sat, 25 Jan 2020 16:25:11 +0000 (17:25 +0100)
mod/ping.php
view/js/main.js

index f9dd7faf279d60893075f8a0413cf52d57b0777f..0c758bd4f8ab1640f3b1dd8dab112bc906abbf1d 100644 (file)
@@ -41,7 +41,7 @@ use Friendica\Util\XML;
  *            "birthdays-today": 0,
  *            "groups": [ ],
  *            "forums": [ ],
- *            "notify": 0,
+ *            "notification": 0,
  *            "notifications": [ ],
  *            "sysmsgs": {
  *                "notice": [ ],
@@ -351,7 +351,7 @@ function ping_init(App $a)
        if ($format == 'json') {
                $data['groups'] = $groups_unseen;
                $data['forums'] = $forums_unseen;
-               $data['notify'] = $sysnotify_count + $intro_count + $register_count;
+               $data['notification'] = $sysnotify_count + $intro_count + $register_count;
                $data['notifications'] = $notifications;
                $data['sysmsgs'] = [
                        'notice' => $sysmsgs,
index 6ca0fabb86b0b34b1c8935783a86a7e6ef482f94..95ee4b8ed91e576141a84f6b702a8acab425d4de 100644 (file)
@@ -245,7 +245,7 @@ $(function() {
                        window.location.href=window.location.href
                }
 
-               ['net', 'home', 'intro', 'mail', 'events', 'birthdays', 'notify'].forEach(function(type) {
+               ['net', 'home', 'intro', 'mail', 'events', 'birthdays', 'notification'].forEach(function(type) {
                        var number = data[type];
                        if (number == 0) {
                                number = '';
@@ -349,7 +349,7 @@ $(function() {
                        });
                }
 
-               var notif = data['notify'];
+               var notif = data['notification'];
                if (notif > 0) {
                        $("#nav-notifications-linkmenu").addClass("on");
                } else {