use path instead of querystring for filters

This commit is contained in:
Fabrice LAMANT
2026-02-06 21:05:06 +01:00
parent aa7b55c320
commit a98bc2178f
4 changed files with 69 additions and 62 deletions

View File

@@ -190,7 +190,6 @@ export class Scraper {
return;
if (!this.nocs.some((n) => n.key === key)) {
console.log(key);
this.nocs.push({ key, name: {} });
}
const noc = this.nocs.find((n) => n.key === key)!;