Skip to content
Snippets Groups Projects
Commit f4c04c5f authored by Lukas Reschke's avatar Lukas Reschke Committed by Morris Jobke
Browse files

Concat also the other results

Otherwise this will ignore the two last checks :speak_no_evil:
parent 53c4a552
No related branches found
No related tags found
No related merge requests found
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment