diff --git a/dist/index.html b/dist/index.html
index f8a5bf7..b4bf61a 100644
--- a/dist/index.html
+++ b/dist/index.html
@@ -60,7 +60,7 @@
t = document.querySelector("button"),
c = document.querySelector("input");
t.addEventListener("click", () => {
- location.href = e + "?q=" + encodeURI(c.value);
+ location.href = e + "?q=" + encodeURIComponent(c.value);
});