Browse Source

typo

fix-133-memory-crash
Dan Janosik 6 years ago
parent
commit
5944412fd3
No known key found for this signature in database GPG Key ID: C6F8CE9FFDB2CED2
  1. 2
      app/api/rpcApi.js

2
app/api/rpcApi.js

@ -422,7 +422,7 @@ function executeBatchesSequentiallyInternal(batchId, batches, currentIndex, accu
executeBatchesSequentiallyInternal(batchId, batches, currentIndex + 1, accumulatedResults, resultFunc); executeBatchesSequentiallyInternal(batchId, batches, currentIndex + 1, accumulatedResults, resultFunc);
} }
}).catch(function(err) { }).catch(function(err) {
reject(err); throw err;
}); });
} }

Loading…
Cancel
Save