]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Subscription.php
spelling: resource
[friendica.git] / src / Model / Subscription.php
index 26617f941a3f4ad6ba48c64e04ce5331204fed1e..10a2d9b4d10d1af6b9b0e051b2c5a4db7c6b4e06 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -141,7 +141,7 @@ class Subscription
        {
                $type = NotificationFactory::getType($notification);
 
-               if (DI::notify()->NotifyOnDesktop($notification, $type)) {
+               if (DI::notify()->shouldShowOnDesktop($notification, $type)) {
                        DI::notify()->createFromNotification($notification);
                }
 
@@ -152,7 +152,7 @@ class Subscription
                $subscriptions = DBA::select('subscription', [], ['uid' => $notification->uid, $type => true]);
                while ($subscription = DBA::fetch($subscriptions)) {
                        Logger::info('Push notification', ['id' => $subscription['id'], 'uid' => $subscription['uid'], 'type' => $type]);
-                       Worker::add(PRIORITY_HIGH, 'PushSubscription', $subscription['id'], $notification->id);
+                       Worker::add(Worker::PRIORITY_HIGH, 'PushSubscription', $subscription['id'], $notification->id);
                }
                DBA::close($subscriptions);
        }