mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 17:48:40 -04:00
fix error in check if app is installed
This commit is contained in:
parent
5962469892
commit
eb42148210
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ if(is_array($catagoryNames)){
|
|||
// show only external apps that aren't enabled yet
|
||||
$local=false;
|
||||
foreach($enabledApps as $a){
|
||||
if($a['name'] == $app['name']) {
|
||||
if($a == $app['name']) {
|
||||
$local=true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue