mirror of
https://github.com/nextcloud/server.git
synced 2026-07-15 04:51:46 -04:00
always return a bool in OC_App::updateApp
This commit is contained in:
parent
5d4f3baf56
commit
6bf06890e7
1 changed files with 1 additions and 1 deletions
|
|
@ -1163,7 +1163,7 @@ class OC_App {
|
|||
OC_DB::updateDbFromStructure(self::getAppPath($appid) . '/appinfo/database.xml');
|
||||
}
|
||||
if (!self::isEnabled($appid)) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
if (file_exists(self::getAppPath($appid) . '/appinfo/update.php')) {
|
||||
self::loadApp($appid);
|
||||
|
|
|
|||
Loading…
Reference in a new issue