Merge pull request #15 from Pranomvignesh/check-worker

fix(workerManager.js) : Added a check for the existence of the worker
pull/2748/head
Alexandru Dima 4 years ago committed by GitHub
commit a53ac54f4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -80,7 +80,9 @@ export class WorkerManager {
_client = client;
})
.then((_) => {
if (this._worker) {
return this._worker.withSyncedResources(resources);
}
})
.then((_) => _client);
}

Loading…
Cancel
Save