forked from FoundKeyGang/FoundKey
fix: correctly parse quotes
This commit is contained in:
parent
a5b0f5cb65
commit
e2063f4ff9
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ export async function createNote(value: string | IObject, resolver: Resolver, si
|
|||
let temperror = false;
|
||||
// check the urls sequentially and abort early to not do unnecessary HTTP requests
|
||||
// picks the first one that works
|
||||
for (const uri in uris) {
|
||||
for (const uri of uris) {
|
||||
const res = await tryResolveNote(uri);
|
||||
if (res.status === 'ok') {
|
||||
quote = res.res;
|
||||
|
|
Loading…
Reference in a new issue