1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

Always retune without lock

This commit is contained in:
Rolf Ahrenberg 2021-02-28 22:15:45 +02:00
parent 0115ba1725
commit 55362a2db6

View File

@ -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;
}