diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index b378b3c918..cf1b7f29db 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -35,7 +35,7 @@ try { $appId = (string)$_POST['appid']; $appId = OC_App::cleanAppId($appId); $app->enable($appId, $groups); - OC_JSON::success(['data' => ['update_required' => \OC_App::shouldUpgrade($app)]]); + OC_JSON::success(['data' => ['update_required' => \OC_App::shouldUpgrade($appId)]]); } catch (Exception $e) { \OCP\Util::writeLog('core', $e->getMessage(), \OCP\Util::ERROR); OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));