mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-21 15:50:17 +01:00
fix secondary demod being false
This commit is contained in:
parent
7fbd024ed5
commit
ceafcbf850
|
|
@ -299,7 +299,7 @@ DemodulatorPanel.prototype.updateHash = function() {
|
|||
secondary_mod: demod.get_secondary_demod(),
|
||||
sql: demod.getSquelch(),
|
||||
}, function(value, key){
|
||||
if (typeof(value) === 'undefined') return undefined;
|
||||
if (typeof(value) === 'undefined' || value === false) return undefined;
|
||||
return key + '=' + value;
|
||||
}).filter(function(v) {
|
||||
return !!v;
|
||||
|
|
|
|||
Loading…
Reference in a new issue