]> git.mxchange.org Git - friendica.git/commitdiff
Now it should work ...
authorMichael <heluecht@pirati.ca>
Thu, 17 May 2018 23:47:15 +0000 (23:47 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 17 May 2018 23:47:15 +0000 (23:47 +0000)
src/Model/PushSubscriber.php

index e982c1444232945f79096cab905d2721dc9c4c9b..76a7e0631216b8ad96e3178745e9387a55bfce2e 100644 (file)
@@ -14,7 +14,7 @@ class PushSubscriber
        /**
         * @param string $priority Priority for push workers
         */
-       public static function publishFeed($priority = PRIORITY_HIGH)
+       public static function publishFeed($default_priority = PRIORITY_HIGH)
        {
                // We'll push to each subscriber that has push > 0,
                // i.e. there has been an update (set in notifier.php).
@@ -24,7 +24,10 @@ class PushSubscriber
                        // We always handle retries with low priority
                        if ($subscriber["push"] > 1) {
                                $priority = PRIORITY_LOW;
+                       } else {
+                               $priority = $default_priority;
                        }
+
                        logger("Publish feed to " . $subscriber["callback_url"] . " with priority " . $priority, LOGGER_DEBUG);
                        Worker::add($priority, 'PubSubPublish', (int)$subscriber["id"]);
                }