diff options
Diffstat (limited to 'src/content/controllers')
| -rw-r--r-- | src/content/controllers/SettingController.ts | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/controllers/SettingController.ts b/src/content/controllers/SettingController.ts index 9124188..2d32c09 100644 --- a/src/content/controllers/SettingController.ts +++ b/src/content/controllers/SettingController.ts @@ -18,9 +18,9 @@ export default class SettingController {        const url = new URL(window.location.href);        const disabled = current.blacklist.includesEntireBlacklist(url);        if (disabled) { -        this.addonEnabledUseCase.disable(); +        await this.addonEnabledUseCase.disable();        } else { -        this.addonEnabledUseCase.enable(); +        await this.addonEnabledUseCase.enable();        }      } catch (e) {        // Sometime sendMessage fails when background script is not ready.  | 
