wmstatus: fix noise adjustment logic
It was possible to trigger an untracked playback stream.
This commit is contained in:
parent
d06beedcaa
commit
bb4fdcd936
|
@ -2249,7 +2249,7 @@ action_noise_adjust (struct app_context *ctx, const struct strv *args)
|
||||||
long arg = strtol (args->vector[0], NULL, 10);
|
long arg = strtol (args->vector[0], NULL, 10);
|
||||||
ctx->noise_fadeout_samples = 0;
|
ctx->noise_fadeout_samples = 0;
|
||||||
ctx->noise_fadeout_iterator = 0;
|
ctx->noise_fadeout_iterator = 0;
|
||||||
if (!ctx->noise_end_time && (arg < 0 || !noise_start (ctx)))
|
if (!ctx->noise_end_time && (arg <= 0 || !noise_start (ctx)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
time_t now = time (NULL);
|
time_t now = time (NULL);
|
||||||
|
|
Loading…
Reference in New Issue