Fix search of web

This commit is contained in:
Florian Baumann 2023-06-30 10:45:22 +02:00
parent 446936496f
commit 23006311d2

View File

@ -247,7 +247,7 @@
<script> <script>
function getParam(paramName) { function getParam(paramName) {
return decodeURI( return decodeURI(
(RegExp(paramName + '=' + '(.+?)(&|$)').exec(location.search) || [, null])[1] (RegExp(paramName + '=' + '(.+?)(&|$)').exec(location.search) || [, 500])[1]
); );
} }
var selectedSetVal = getParam("set"); var selectedSetVal = getParam("set");