We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c56d9 commit 9e5a936Copy full SHA for 9e5a936
1 file changed
keepassxc-browser/content/passkeys.js
@@ -203,8 +203,9 @@
203
if (!response.publicKey) {
204
if (!response.fallback) {
205
throwError(response?.errorCode, response?.errorMessage);
206
+ return null;
207
}
- return response.fallback ? originalCredentials.create(options) : null;
208
+ return originalCredentials.create(options);
209
210
211
return createPublicKeyCredential(response.publicKey);
@@ -228,8 +229,9 @@
228
229
230
231
232
233
- return response.fallback ? originalCredentials.get(options) : null;
234
+ return originalCredentials.get(options);
235
236
237
0 commit comments