From 6f005be80fabab743ed14727d9b5172ed033b275 Mon Sep 17 00:00:00 2001 From: Akhil Gupta Date: Tue, 13 Apr 2021 10:49:05 +0530 Subject: [PATCH] fix #82 --- client/addPodcast.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/addPodcast.html b/client/addPodcast.html index f87cd8f..90788aa 100644 --- a/client/addPodcast.html +++ b/client/addPodcast.html @@ -244,7 +244,7 @@ var self = this; self.searching = true; axios - .get("/search?q=" + this.query+"&searchSource="+this.searchSource) + .get(encodeURI("/search?q=" + this.query+"&searchSource="+this.searchSource)) .then(function (response) { self.results = response.data; })