Check if forced value is 0
This commit is contained in:
parent
6fac3d7a76
commit
a0444e4b0b
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ function getForcedSampleRate() {
|
|||
if (phrases[j].includes("value")) {
|
||||
let value = phrases[j].slice(7, -1);
|
||||
|
||||
if (value) {
|
||||
if (value && value != 0) {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue