nexabase-console 2.1.1 → 2.1.2
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/app/NexaApp.js +2 -0
- package/package.json +1 -1
package/dist/app/NexaApp.js
CHANGED
|
@@ -382,6 +382,8 @@ class NexaApp {
|
|
|
382
382
|
this._closeFirestoreSSEIfIdle();
|
|
383
383
|
}
|
|
384
384
|
_notifySnapshotCallbacks(path, actionType, payload) {
|
|
385
|
+
if (!path || typeof path !== 'string')
|
|
386
|
+
return;
|
|
385
387
|
Object.keys(this._snapshotCallbacks).forEach((cbKey) => {
|
|
386
388
|
const parts = cbKey.split('_');
|
|
387
389
|
const targetPath = parts.slice(2).join('_');
|
package/package.json
CHANGED