Skip to content
Merged

v8.0.1 #1272

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _locales/lv/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description": "Extension Short Name."
},
"extDesc": {
"message": "Divpakāpju kodu ģenerators atvieglo darbu ar 2FA (divpakāpju) autentifikācijas kodu izveidošanu un aizpildīšanu jūsu pārlūkprogrammā.",
"message": "Divpakāpju kodu ģenerators atvieglo darbu ar 2FA (divpakāpju) autentifikācijas kodu izveidošanu un aizpildīšanu jūsu pārlūkprogrammā",
"description": "Extension Description."
},
"added": {
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifest-chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"version": "8.0.0",
"version": "8.0.1",
"default_locale": "en",
"description": "__MSG_extDesc__",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifest-edge.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Authenticator: 2FA Client",
"version": "8.0.0",
"version": "8.0.1",
"default_locale": "en",
"description": "__MSG_extDesc__",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"version": "8.0.0",
"version": "8.0.1",
"default_locale": "en",
"description": "__MSG_extDesc__",
"browser_specific_settings": {
Expand Down
7 changes: 6 additions & 1 deletion src/components/Popup/AddAccountPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ export default Vue.extend({
this.newAccount.period = undefined;
}

const defaultEncyptionKey = this.$store.state.accounts.defaultEncryption;
const encryption = this.$store.state.accounts.encryption[
defaultEncyptionKey
];

const entry = new OTPEntry(
{
type,
Expand All @@ -128,7 +133,7 @@ export default Vue.extend({
digits: this.newAccount.digits,
algorithm: this.newAccount.algorithm,
},
this.$store.state.accounts.encryption
encryption
);

await entry.create();
Expand Down
Loading