forked from Mirrors/keyoxide-web
Fix dynamic key loading
This commit is contained in:
parent
15516c02e6
commit
f8bd9a3685
1 changed files with 10 additions and 8 deletions
|
@ -109,17 +109,19 @@ const fetchProfileKey = async function() {
|
|||
const rawKeyData = await fetch(window.kx.key.url)
|
||||
let key, errorMsg
|
||||
|
||||
// try {
|
||||
// key = (await openpgp.key.read(await rawKeyData.arrayBuffer())).keys[0]
|
||||
// } catch(error) {
|
||||
// errorMsg = error.message
|
||||
// }
|
||||
|
||||
try {
|
||||
key = (await openpgp.key.readArmored(await rawKeyData.text())).keys[0]
|
||||
key = (await openpgp.key.read(new Uint8Array(await rawKeyData.clone().arrayBuffer()))).keys[0]
|
||||
} catch(error) {
|
||||
errorMsg = error.message
|
||||
}
|
||||
|
||||
if (!key) {
|
||||
try {
|
||||
key = (await openpgp.key.readArmored(await rawKeyData.clone().text())).keys[0]
|
||||
} catch (error) {
|
||||
errorMsg = error.message
|
||||
}
|
||||
}
|
||||
|
||||
if (key) {
|
||||
window.kx.key.object = key
|
||||
|
|
Loading…
Reference in a new issue