fix: correctly parse quotes

This commit is contained in:
Johann150 2023-02-24 23:47:50 +01:00
parent a5b0f5cb65
commit e2063f4ff9
Signed by untrusted user: Johann150
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 1 additions and 1 deletions

View File

@ -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;