diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-13 02:23:24 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-13 02:23:24 +0200 |
commit | 250069d86097a966366d21e447f6c3fcc70659bd (patch) | |
tree | 0710d7957ece0997e217206622854bf112d8e9b6 /lib/wallet/db.ts | |
parent | 122e069d914622343fa1a21c3990a2f416ea9dfe (diff) |
refactoring / refresh WIP
Diffstat (limited to 'lib/wallet/db.ts')
-rw-r--r-- | lib/wallet/db.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wallet/db.ts b/lib/wallet/db.ts index 23cc9eb07..55e943393 100644 --- a/lib/wallet/db.ts +++ b/lib/wallet/db.ts @@ -25,7 +25,7 @@ */ const DB_NAME = "taler"; -const DB_VERSION = 7; +const DB_VERSION = 8; /** * Return a promise that resolves @@ -72,7 +72,7 @@ export function openTalerDb(): Promise<IDBDatabase> { if (e.oldVersion != DB_VERSION) { window.alert("Incompatible wallet dababase version, please reset" + " db."); - chrome.browserAction.setBadgeText({text: "R!"}); + chrome.browserAction.setBadgeText({text: "err"}); chrome.browserAction.setBadgeBackgroundColor({color: "#F00"}); throw Error("incompatible DB"); } |