diff --git a/theme/nchyn_grey.html b/theme/nchyn_grey.html
index b9493d6..e153f42 100644
--- a/theme/nchyn_grey.html
+++ b/theme/nchyn_grey.html
@@ -222,7 +222,7 @@
@@ -717,7 +717,10 @@ return false;
var $url = document.getElementById('url');
if ($url) {
- $url.innerHTML = location.protocol + '//' + location.host + $url.innerHTML;
+ //$url.innerHTML = location.protocol + '//' + location.host + $url.innerHTML;
+ let url = location.href;
+ url = url.substr(0, url.length-8);
+ $url.innerHTML = url.replace(/&/g, '&');
$url.style.height = $url.scrollHeight + 'px';
}