File tree 5 files changed +10
-5
lines changed
5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 8
8
"description" : " Extension Short Name."
9
9
},
10
10
"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ā" ,
12
12
"description" : " Extension Description."
13
13
},
14
14
"added" : {
Original file line number Diff line number Diff line change 2
2
"manifest_version" : 3 ,
3
3
"name" : " __MSG_extName__" ,
4
4
"short_name" : " __MSG_extShortName__" ,
5
- "version" : " 8.0.0 " ,
5
+ "version" : " 8.0.1 " ,
6
6
"default_locale" : " en" ,
7
7
"description" : " __MSG_extDesc__" ,
8
8
"icons" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"manifest_version" : 3 ,
3
3
"name" : " Authenticator: 2FA Client" ,
4
- "version" : " 8.0.0 " ,
4
+ "version" : " 8.0.1 " ,
5
5
"default_locale" : " en" ,
6
6
"description" : " __MSG_extDesc__" ,
7
7
"icons" : {
Original file line number Diff line number Diff line change 2
2
"manifest_version" : 3 ,
3
3
"name" : " __MSG_extName__" ,
4
4
"short_name" : " __MSG_extShortName__" ,
5
- "version" : " 8.0.0 " ,
5
+ "version" : " 8.0.1 " ,
6
6
"default_locale" : " en" ,
7
7
"description" : " __MSG_extDesc__" ,
8
8
"browser_specific_settings" : {
Original file line number Diff line number Diff line change @@ -115,6 +115,11 @@ export default Vue.extend({
115
115
this .newAccount .period = undefined ;
116
116
}
117
117
118
+ const defaultEncyptionKey = this .$store .state .accounts .defaultEncryption ;
119
+ const encryption = this .$store .state .accounts .encryption [
120
+ defaultEncyptionKey
121
+ ];
122
+
118
123
const entry = new OTPEntry (
119
124
{
120
125
type ,
@@ -128,7 +133,7 @@ export default Vue.extend({
128
133
digits: this .newAccount .digits ,
129
134
algorithm: this .newAccount .algorithm ,
130
135
},
131
- this . $store . state . accounts . encryption
136
+ encryption
132
137
);
133
138
134
139
await entry .create ();
You can’t perform that action at this time.
0 commit comments