diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index e54f676244..99bb38cc21 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -730,9 +730,26 @@ if ($config['menu_type'] == 'classic') { values[this.name] = $(this).val(); }) - var newValue = btoa(JSON.stringify(values)); - $(document).attr("location", href+'&fb64=' + newValue + '&refr=' + this.value); + var newValue = btoa(JSON.stringify(values)); + + var fb64 = ''; + // Check if the filters have changed. + if(fb64 !== newValue){ + href = href.replace(fb64, newValue); + } + $(document).attr("location", href+ '&refr=' + this.value); + + $(document).attr("location", href+'&fb64=' + newValue + '&refr=' + this.value); + } else { $(document).attr ("location", href + this.value); }