We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25ae69f commit 3dcf595Copy full SHA for 3dcf595
1 file changed
src/crawlers/chrome.ts
@@ -7,6 +7,8 @@ export async function crawlExtension(
7
): Promise<Gql.ChromeExtension | undefined> {
8
consola.info("Crawling " + id);
9
const url = `https://chrome.google.com/webstore/detail/${id}?hl=${lang}`;
10
+ // TODO: Replace with new CWS URL when old store is deprecated - tested and everything works at this time
11
+ // const url = `https://chromewebstore.google.com/detail/${id}?hl=${lang}`;
12
const res = await fetch(url);
13
if (res.status !== 200) return;
14
0 commit comments