fix: missing url property

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-11-03 18:20:05 +09:00
parent c6a859dff3
commit 2897001d02
No known key found for this signature in database
GPG Key ID: 3E87B98A3F6BAB99
2 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@ export default function amazon(url: URL, html: HTMLRewriter) {
sitename: siteName, sitename: siteName,
icon: favicon, icon: favicon,
sensitive, sensitive,
url: url.href,
}; };
} }
); );

View File

@ -19,5 +19,6 @@ export default async function wikipedia(url: URL, html: HTMLRewriter) {
height: null, height: null,
}, },
sitename: "Wikipedia", sitename: "Wikipedia",
url: url.href,
}; };
} }