]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Cron.php
Merge pull request #8494 from annando/ap-fix-comments
[friendica.git] / src / Worker / Cron.php
index 763aa98f3486731a0f51a0e160cee0bb8d33470b..a47193334ca4081bf6862b07dd244fddf9233044 100644 (file)
@@ -1,7 +1,24 @@
 <?php
 /**
- * @file src/Worker/Cron.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Worker;
 
 use Friendica\Core\Addon;
@@ -52,9 +69,6 @@ class Cron
                // Clear cache entries
                Worker::add(PRIORITY_LOW, "CronJobs", "clear_cache");
 
-               // Repair missing Diaspora values in contacts
-               Worker::add(PRIORITY_LOW, "CronJobs", "repair_diaspora");
-
                // Repair entries in the database
                Worker::add(PRIORITY_LOW, "CronJobs", "repair_database");
 
@@ -265,7 +279,7 @@ class Cron
                                }
                        }
 
-                       if (($contact['network'] == Protocol::FEED) && ($contact['priority'] <= 3)) {
+                       if ((($contact['network'] == Protocol::FEED) && ($contact['priority'] <= 3)) || ($contact['network'] == Protocol::MAIL)) {
                                $priority = PRIORITY_MEDIUM;
                        } elseif ($contact['archive']) {
                                $priority = PRIORITY_NEGLIGIBLE;