summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSatsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>2020-01-27 05:38:40 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-01-27 05:38:40 +0900
commitbbcc09d426485e57a9edeecc79a245093391283c (patch)
treed5405c4a37a1089cb62cdefb00ce94a797ce2f2e /src
parentResolve #5762 (#5770) (diff)
downloadsharkey-bbcc09d426485e57a9edeecc79a245093391283c.tar.gz
sharkey-bbcc09d426485e57a9edeecc79a245093391283c.tar.bz2
sharkey-bbcc09d426485e57a9edeecc79a245093391283c.zip
Allow 'internal' device in WebAuthN (#5756)
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/views/components/signin.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/signin.vue b/src/client/app/common/views/components/signin.vue
index f76f989d6d..bb4a6605bd 100644
--- a/src/client/app/common/views/components/signin.vue
+++ b/src/client/app/common/views/components/signin.vue
@@ -107,7 +107,7 @@ export default Vue.extend({
allowCredentials: this.challengeData.securityKeys.map(key => ({
id: Buffer.from(key.id, 'hex'),
type: 'public-key',
- transports: ['usb', 'ble', 'nfc']
+ transports: ['usb', 'nfc', 'ble', 'internal']
})),
timeout: 60 * 1000
}