Skip to content
Snippets Groups Projects
Commit eb421482 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix error in check if app is installed

parent 59624698
Branches
No related tags found
No related merge requests found
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment