Skip to content

Commit 0aaac32

Browse files
committed
chore: Crawl new chromewebstore.google.com domain
1 parent 3dcf595 commit 0aaac32

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/crawlers/chrome.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ export async function crawlExtension(
66
lang: string
77
): Promise<Gql.ChromeExtension | undefined> {
88
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}`;
9+
const url = `https://chromewebstore.google.com/detail/${id}?hl=${lang}`;
1210
const res = await fetch(url);
1311
if (res.status !== 200) return;
1412

0 commit comments

Comments
 (0)