ignore abort error

This commit is contained in:
Bruno Windels 2020-09-29 10:52:52 +02:00
parent 919357b474
commit 163ca12854

View file

@ -196,7 +196,9 @@ export class Sync {
// avoid corrupting state by only
// storing the sync up till the point
// the exception occurred
syncTxn.abort();
try {
syncTxn.abort();
} catch (abortErr) { /* ignore when we can't abort */ }
throw err;
}
try {