Skip to content

Commit

Permalink
fix(bg): legacy migration
Browse files Browse the repository at this point in the history
  • Loading branch information
stoically committed Jul 1, 2019
1 parent 404c395 commit 71ae81d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/background/migration-legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const migrationReadyAbortController = new AbortController;
let migrationReady;
const migrationReadyPromise = new Promise((resolve, reject) => {
migrationReady = () => {}; //resolve;
migrationReady = resolve;

migrationReadyAbortController.signal.addEventListener('abort', () => {
reject();
Expand Down

0 comments on commit 71ae81d

Please sign in to comment.