Fix for double URI component encoding when querying GiantBomb API by title

This commit is contained in:
Karn 2025-08-30 22:24:13 +01:00
parent 9fa7348ae9
commit 51db30fb27

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,
},