diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-05-09 06:31:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-09 06:31:46 +0000 |
commit | 03bf63a1fa872c17cca99ff60967c05c1bca9a7e (patch) | |
tree | 7d96d22a4df21179080c190276c8759afc583bf1 /src/background/presenters/Notifier.ts | |
parent | 479efbdb4116a13d27f0ac7e8abb3ef86bdd6273 (diff) | |
parent | ca3f03ea5ed46d4a6c4815bedd2469a69f3b1183 (diff) |
Merge pull request #1146 from ueokande/improve-error-message
Improve an error message on invalid settings
Diffstat (limited to 'src/background/presenters/Notifier.ts')
-rw-r--r-- | src/background/presenters/Notifier.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/background/presenters/Notifier.ts b/src/background/presenters/Notifier.ts index 957572d..d828b2e 100644 --- a/src/background/presenters/Notifier.ts +++ b/src/background/presenters/Notifier.ts @@ -4,7 +4,7 @@ const NOTIFICATION_ID_INVALID_SETTINGS = "vimvixen-update-invalid-settings"; export default interface Notifier { notifyUpdated(version: string, onclick: () => void): Promise<void>; - notifyInvalidSettings(onclick: () => void): Promise<void>; + notifyInvalidSettings(error: Error, onclick: () => void): Promise<void>; } export class NotifierImpl implements NotifierImpl { @@ -29,11 +29,13 @@ export class NotifierImpl implements NotifierImpl { }); } - async notifyInvalidSettings(onclick: () => void): Promise<void> { + async notifyInvalidSettings( + error: Error, + onclick: () => void + ): Promise<void> { const title = `Loading settings failed`; // eslint-disable-next-line max-len - const message = - "The default settings are used due to the last saved settings is invalid. Check your current settings from the add-on preference"; + const message = `The default settings are used due to the last saved settings is invalid. Check your current settings from the add-on preference: ${error.message}`; const listener = (id: string) => { if (id !== NOTIFICATION_ID_INVALID_SETTINGS) { |