2
0
mirror of https://github.com/esiur/esiur-js.git synced 2026-04-04 14:08:20 +00:00

Replace .error with .catch

This commit is contained in:
2025-11-23 00:31:09 +03:00
parent 53946aacff
commit dd88085cc2
7 changed files with 270 additions and 119 deletions

View File

@@ -211,9 +211,9 @@ export default class IndexedDBStore extends IStore
}
rt.trigger(resource);
}).error(ex => rt.triggerError(ex));
}).error(ex => rt.triggerError(ex));
}).error(ex => rt.triggerError(ex));
}).catch(ex => rt.triggerError(ex));
}).catch(ex => rt.triggerError(ex));
}).catch(ex => rt.triggerError(ex));
};
return rt;