From e166b43687306cbf8265292a4731c8056d1fce79 Mon Sep 17 00:00:00 2001 From: Smittix Date: Thu, 26 Feb 2026 17:31:25 +0000 Subject: [PATCH] morse: stop forcing rtl_fm squelch flag --- routes/morse.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/routes/morse.py b/routes/morse.py index 280c699..fd22cf5 100644 --- a/routes/morse.py +++ b/routes/morse.py @@ -596,13 +596,6 @@ def start_morse() -> Response: fm_kwargs['direct_sampling'] = int(direct_sampling_mode) cmd = list(builder.build_fm_demod_command(**fm_kwargs)) - insert_at = len(cmd) - 1 if cmd else 0 - if insert_at < 0: - insert_at = 0 - - # Mirror pager's stable behavior: explicit open squelch, stdout as "-". - if sdr_device.sdr_type == SDRType.RTL_SDR and '-l' not in cmd: - cmd[insert_at:insert_at] = ['-l', '0'] if cmd and cmd[-1] != '-': cmd.append('-')