diff --git a/settings/controller/appsettingscontroller.php b/settings/controller/appsettingscontroller.php
index b9e60c376de78de55401814ca7cb648432b02768..3688859ef5602b637f954fe60532838b677ceaa4 100644
--- a/settings/controller/appsettingscontroller.php
+++ b/settings/controller/appsettingscontroller.php
@@ -120,6 +120,8 @@ class AppSettingsController extends Controller {
 		// fix groups to be an array
 		$dependencyAnalyzer = new DependencyAnalyzer(new Platform($this->config), $this->l10n);
 		$apps = array_map(function($app) use ($dependencyAnalyzer) {
+
+			// fix groups
 			$groups = array();
 			if (is_string($app['groups'])) {
 				$groups = json_decode($app['groups']);
@@ -127,11 +129,16 @@ class AppSettingsController extends Controller {
 			$app['groups'] = $groups;
 			$app['canUnInstall'] = !$app['active'] && $app['removable'];
 
+			// fix licence vs license
+			if (isset($app['license']) && !isset($app['licence'])) {
+				$app['licence'] = $app['license'];
+			}
+
 			// analyse dependencies
 			$missing = $dependencyAnalyzer->analyze($app);
-
 			$app['canInstall'] = empty($missing);
 			$app['missingDependencies'] = $missing;
+
 			return $app;
 		}, $apps);
 
diff --git a/settings/templates/apps.php b/settings/templates/apps.php
index ae87297bb1411050fcce9c2fe064e15b79d3a93d..02cab16dec5afb679a8417d6cc954e9ab16e5829 100644
--- a/settings/templates/apps.php
+++ b/settings/templates/apps.php
@@ -22,8 +22,8 @@
 	<h2 class="app-name"><a href="{{detailpage}}" target="_blank">{{name}}</a></h2>
 	<div class="app-version"> {{version}}</div>
 	<div class="app-author"><?php p($l->t('by')); ?> {{author}}
-		{{#if license}}
-		({{license}}-<?php p($l->t('licensed')); ?>)
+		{{#if licence}}
+		({{licence}}-<?php p($l->t('licensed')); ?>)
 		{{/if}}
 	</div>
 	{{#if score}}