From 25a7bbd86a96d75041ff3d32320ad14eac166e38 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 26 Apr 2020 23:14:34 +0200 Subject: [PATCH] reset secondary demodulator, too --- htdocs/openwebrx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/openwebrx.js b/htdocs/openwebrx.js index 04598bb..24b5cc2 100644 --- a/htdocs/openwebrx.js +++ b/htdocs/openwebrx.js @@ -1494,7 +1494,7 @@ function parseHash() { function validateHash() { var params = parseHash(); params = Object.keys(params).filter(function(key) { - if (key == 'freq' || key == 'mod') { + if (key == 'freq' || key == 'mod' || key == 'secondary_mod') { return params.freq && Math.abs(params.freq - center_freq) < bandwidth; } return true;