Concat also the other results

Otherwise this will ignore the two last checks 🙊
This commit is contained in:
Lukas Reschke 2016-01-09 22:17:50 +01:00 committed by Morris Jobke
parent 53c4a55275
commit f4c04c5f28
1 changed files with 2 additions and 2 deletions

View File

@ -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');