From b6d6c23eebaf2d50f446b1514d658989cd1b12f9 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Sun, 15 Feb 2026 19:03:32 -0500 Subject: [PATCH] Ensure that filters with spaces in them are decoded properly --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 93dfee1..92c02b0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -13,7 +13,7 @@ export default { data() { return { ascending: this.ascending, - filter: window.location.href.split("filter=")[1] || "", + filter: decodeURIComponent(window.location.href.split("filter=")[1] || ""), sortColumn: this.sortColumn, sortMethod: 'score', topics: [],