mirror of
https://github.com/esiur/esiur-js.git
synced 2026-03-20 08:00:39 +00:00
fix
This commit is contained in:
@@ -5809,9 +5809,9 @@ var DistributedConnection = exports["default"] = /*#__PURE__*/function (_IStore)
|
|||||||
_r2 = _toBeFetched[_i2];
|
_r2 = _toBeFetched[_i2];
|
||||||
_context.prev = 40;
|
_context.prev = 40;
|
||||||
_context.next = 43;
|
_context.next = 43;
|
||||||
return this.fetch(id, null);
|
return this.fetch(_r2, null);
|
||||||
case 43:
|
case 43:
|
||||||
console.log("Restored " + id);
|
console.log("Restored " + _r2);
|
||||||
_context.next = 49;
|
_context.next = 49;
|
||||||
break;
|
break;
|
||||||
case 46:
|
case 46:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "esiur",
|
"name": "esiur",
|
||||||
"version": "2.3.9",
|
"version": "2.4.0",
|
||||||
"description": "Distributed Object Framework",
|
"description": "Distributed Object Framework",
|
||||||
"main": "esiur.js",
|
"main": "esiur.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -1309,8 +1309,8 @@ export default class DistributedConnection extends IStore {
|
|||||||
for(let r of toBeFetched)
|
for(let r of toBeFetched)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
await this.fetch(id, null);
|
await this.fetch(r, null);
|
||||||
console.log("Restored " + id);
|
console.log("Restored " + r);
|
||||||
} catch (exFetch){
|
} catch (exFetch){
|
||||||
console.log(exFetch);
|
console.log(exFetch);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user