Skip to content

Commit cf71a63

Browse files
Sneezrymymindstorm
andauthored
v8.0.1 (#1272)
* fix issue in translations * fix add account issue (#1264) * v8.0.1 (#1270) --------- Co-authored-by: Brendan Early <mymindstorm@evermiss.net>
1 parent 2cf9b0f commit cf71a63

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

_locales/lv/messages.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"description": "Extension Short Name."
99
},
1010
"extDesc": {
11-
"message": "Divpakāpju kodu ģenerators atvieglo darbu ar 2FA (divpakāpju) autentifikācijas kodu izveidošanu un aizpildīšanu jūsu pārlūkprogrammā.",
11+
"message": "Divpakāpju kodu ģenerators atvieglo darbu ar 2FA (divpakāpju) autentifikācijas kodu izveidošanu un aizpildīšanu jūsu pārlūkprogrammā",
1212
"description": "Extension Description."
1313
},
1414
"added": {

manifests/manifest-chrome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "__MSG_extName__",
44
"short_name": "__MSG_extShortName__",
5-
"version": "8.0.0",
5+
"version": "8.0.1",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"icons": {

manifests/manifest-edge.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Authenticator: 2FA Client",
4-
"version": "8.0.0",
4+
"version": "8.0.1",
55
"default_locale": "en",
66
"description": "__MSG_extDesc__",
77
"icons": {

manifests/manifest-firefox.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "__MSG_extName__",
44
"short_name": "__MSG_extShortName__",
5-
"version": "8.0.0",
5+
"version": "8.0.1",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"browser_specific_settings": {

src/components/Popup/AddAccountPage.vue

+6-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@ export default Vue.extend({
115115
this.newAccount.period = undefined;
116116
}
117117
118+
const defaultEncyptionKey = this.$store.state.accounts.defaultEncryption;
119+
const encryption = this.$store.state.accounts.encryption[
120+
defaultEncyptionKey
121+
];
122+
118123
const entry = new OTPEntry(
119124
{
120125
type,
@@ -128,7 +133,7 @@ export default Vue.extend({
128133
digits: this.newAccount.digits,
129134
algorithm: this.newAccount.algorithm,
130135
},
131-
this.$store.state.accounts.encryption
136+
encryption
132137
);
133138
134139
await entry.create();

0 commit comments

Comments
 (0)