Browse Source

Merge pull request #27088 from nextcloud/fix/27074/removing-apps

Allow removing apps with app store disabled
tags/v22.0.0beta4
John Molakvoæ 3 years ago
parent
commit
949102c031
No account linked to committer's email address
1 changed files with 0 additions and 4 deletions
  1. 0
    4
      lib/private/legacy/OC_App.php

+ 0
- 4
lib/private/legacy/OC_App.php View File

@@ -460,10 +460,6 @@ class OC_App {
* @return string|false
*/
public static function getInstallPath() {
if (\OC::$server->getSystemConfig()->getValue('appstoreenabled', true) == false) {
return false;
}

foreach (OC::$APPSROOTS as $dir) {
if (isset($dir['writable']) && $dir['writable'] === true) {
return $dir['path'];

Loading…
Cancel
Save