backendless 6.3.4 → 6.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/backendless.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* ********************************************************************************************************************
|
|
3
|
-
* Backendless SDK for JavaScript. Version: 6.3.
|
|
3
|
+
* Backendless SDK for JavaScript. Version: 6.3.5
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2012-2021 BACKENDLESS.COM. All Rights Reserved.
|
|
6
6
|
*
|
|
@@ -18349,7 +18349,7 @@ var LocalCache = /*#__PURE__*/function () {
|
|
|
18349
18349
|
function LocalCache(app) {
|
|
18350
18350
|
(0, _classCallCheck2["default"])(this, LocalCache);
|
|
18351
18351
|
this.app = app;
|
|
18352
|
-
this.storageName = "".concat(STORAGE_KEY_NAMESPACE, "_").concat(this.app.appId);
|
|
18352
|
+
this.storageName = this.app.appId ? "".concat(STORAGE_KEY_NAMESPACE, "_").concat(this.app.appId) : STORAGE_KEY_NAMESPACE;
|
|
18353
18353
|
var Storage = _utils["default"].isLocalStorageSupported ? _localStorage["default"] : _virtualStorage["default"];
|
|
18354
18354
|
this.setStorage(Storage);
|
|
18355
18355
|
this.Keys = {
|