Merge pull request #209 from Spydarlee/giantbomb-fix
Fix for double URI component encoding when querying GiantBomb API
This commit is contained in:
commit
810beaa23b
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ export class GiantBombAPI extends APIModel {
|
||||||
params: {
|
params: {
|
||||||
query: {
|
query: {
|
||||||
api_key: this.plugin.settings.GiantBombKey,
|
api_key: this.plugin.settings.GiantBombKey,
|
||||||
filter: `name:${encodeURIComponent(title)}`,
|
filter: `name:${title}`,
|
||||||
format: 'json',
|
format: 'json',
|
||||||
limit: 20,
|
limit: 20,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue