From 9188a0f25b5ef72b25fef46bfedb39e9a379e4ed Mon Sep 17 00:00:00 2001 From: Kylart Date: Sat, 24 Feb 2018 01:58:52 +0100 Subject: [PATCH] We'd better encode URIs --- components/infoResults.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/infoResults.vue b/components/infoResults.vue index 733fc59..dac311e 100644 --- a/components/infoResults.vue +++ b/components/infoResults.vue @@ -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)}` } } }