[bugfix] updated tags to the correct names

* fixed issue where enabledTags and excludedTags are appended to the query string
This commit is contained in:
silentrald
2024-10-18 00:45:57 +08:00
parent 8357c09e9f
commit 70926283ff
2 changed files with 34 additions and 31 deletions
@@ -40,6 +40,9 @@ export class BeatSaverApiService {
const params: Record<string, string> = this.objectToStringRecord({...filter, tags});
delete params.enabledTags;
delete params.excludedTags;
return new URLSearchParams(params);
}