From ee8ce5a153a7aad290c30edb06e67766216620a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Fri, 13 Sep 2019 13:07:12 +0200 Subject: [PATCH] Comment clearification --- webapp/pages/search/hashtag/_id.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/pages/search/hashtag/_id.vue b/webapp/pages/search/hashtag/_id.vue index f501b67bc..38364d86f 100644 --- a/webapp/pages/search/hashtag/_id.vue +++ b/webapp/pages/search/hashtag/_id.vue @@ -6,7 +6,7 @@ export default { mounted() { let { id: hashtag } = this.$route.params - // 'hashtag' seems automatically 'decodeURI' on macOS Firefox. Don't know if this is always the case. + // 'hashtag' seems automatically to be 'decodeURI' (on macOS Firefox). Don't know if this is always the case. this.$router.push({ path: '/', query: { hashtag: encodeURI(hashtag) } }) }, }