From 25e67c20278bd6768fe42f6c49daedbdce1669b8 Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 8 Jan 2021 17:38:58 +0100 Subject: [PATCH] Fix FALSE_INIT error --- www/common/outer/async-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 343dda673..0d8546289 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -2653,7 +2653,7 @@ define([ // "cb" may have already been called by onCacheReady store.returned = returned; - if (typeof(cb) === 'function') { cb(); } + if (typeof(cb) === 'function') { cb(returned); } store.offline = false; sendDriveEvent('NETWORK_RECONNECT'); // Tell inner that we're now online