From ee26630e4d6f9a1fae0aa03d65e58a46cbf762e6 Mon Sep 17 00:00:00 2001 From: lesion Date: Mon, 17 Jan 2022 12:02:28 +0100 Subject: [PATCH] encodeURI in feed URL --- components/Nav.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Nav.vue b/components/Nav.vue index a3a663ac..5bea5118 100644 --- a/components/Nav.vue +++ b/components/Nav.vue @@ -65,7 +65,7 @@ export default { computed: { ...mapState(['filters', 'settings']), feedLink () { - const tags = this.filters.tags && this.filters.tags.join(',') + const tags = this.filters.tags && this.filters.tags.map(encodeURIComponent).join(',') const places = this.filters.places && this.filters.places.join(',') let query = '' if (tags || places) {