]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/DBUpdate.php
Move Config::get() to DI::config()->get()
[friendica.git] / src / Worker / DBUpdate.php
index 05bace14679d3da1718d75b2df8f62066e79e110..83c9fd32323b6b947225d9621231ebadb254f451 100644 (file)
@@ -1,17 +1,21 @@
 <?php
 /**
  * @file src/Worker/DBUpdate.php
- * @brief This file is called when the database structure needs to be updated
+ * This file is called when the database structure needs to be updated
  */
 namespace Friendica\Worker;
 
-use Friendica\BaseObject;
+use Friendica\Core\Config;
 use Friendica\Core\Update;
+use Friendica\DI;
 
-class DBUpdate extends BaseObject
+class DBUpdate
 {
        public static function execute()
        {
-               Update::run(self::getApp()->getBasePath());
+               // Just in case the last update wasn't failed
+               if (DI::config()->get('system', 'update', Update::SUCCESS, true) != Update::FAILED) {
+                       Update::run(DI::app()->getBasePath());
+               }
        }
 }