Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-01-10 00:17:50 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-01-10 13:39:44 +0300
commitf4c04c5f28c272316e4017e121df866d407d86cf (patch)
tree43ec8390669333e5af5825dc29f3c0434de914f6 /settings
parent53c4a55275af709daa479fc3a48143167084ea8b (diff)
Concat also the other results
Otherwise this will ignore the two last checks :speak_no_evil:
Diffstat (limited to 'settings')
-rw-r--r--settings/js/admin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/admin.js b/settings/js/admin.js
index 644b773d7b1..48dfdc88246 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -172,8 +172,8 @@ $(document).ready(function(){
OC.SetupChecks.checkWellKnownUrl('/.well-known/carddav/', oc_defaults.docPlaceholderUrl),
OC.SetupChecks.checkSetup(),
OC.SetupChecks.checkGeneric()
- ).then(function(check1, check2, check3) {
- var messages = [].concat(check1, check2, check3);
+ ).then(function(check1, check2, check3, check4, check5) {
+ var messages = [].concat(check1, check2, check3, check4, check5);
var $el = $('#postsetupchecks');
$el.find('.loading').addClass('hidden');