We'd better encode URIs

This commit is contained in:
Kylart 2018-02-24 01:58:52 +01:00
parent a274d138cd
commit 9188a0f25b
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@
: 'episode'
},
url () {
return `https://myanimelist.net/anime/${this.info.id}/${this.info.title}`
return `https://myanimelist.net/anime/${this.info.id}/${encodeURI(this.info.title)}`
}
}
}