From 2d2a2ef99117c9bf87641047b76a48c837a77b08 Mon Sep 17 00:00:00 2001 From: Ryan Wark Date: Tue, 10 Aug 2021 21:16:38 -0300 Subject: [PATCH] Decoding the search term on load --- dist/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.html b/dist/index.html index 5b591ce..2cf7907 100644 --- a/dist/index.html +++ b/dist/index.html @@ -46,7 +46,7 @@ function init() { function parseLocation() { var term = window.location.search || window.location.hash; if(term.length > 1) { - qrtext.value = term.substring(1); + qrtext.value = decodeURIComponent(term.substring(1)); makeCode(qrtext); } }