From 55362a2db650153f2d83baeb2a22ccb2774d5fb5 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Sun, 28 Feb 2021 22:15:45 +0200 Subject: [PATCH] Always retune without lock --- tuner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuner.c b/tuner.c index 0382f14..cd8366b 100644 --- a/tuner.c +++ b/tuner.c @@ -223,7 +223,7 @@ bool cSatipTuner::Connect(void) tnrParamM = ""; // Just retune if (streamIdM >= 0) { - if (!strcmp(*streamParamM, *lastParamM)) { + if (!strcmp(*streamParamM, *lastParamM) && hasLockM) { debug1("%s Identical parameters [device %d]", __PRETTY_FUNCTION__, deviceIdM); return true; }