Merge pull request #209 from Spydarlee/giantbomb-fix

Fix for double URI component encoding when querying GiantBomb API
This commit is contained in:
Moritz Jung 2025-08-31 00:06:21 +02:00 committed by GitHub
commit 810beaa23b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ export class GiantBombAPI extends APIModel {
params: {
query: {
api_key: this.plugin.settings.GiantBombKey,
filter: `name:${encodeURIComponent(title)}`,
filter: `name:${title}`,
format: 'json',
limit: 20,
},