Skip to content

Commit 5dd16d2

Browse files
kgroeneveldPaul Harrison
authored andcommitted
Fix live TV idle timeout not being reset properly after the OSD prompt.
Fixes ##9753. Signed-off-by: Paul Harrison <pharrison@mythtv.org>
1 parent 3ad8236 commit 5dd16d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mythtv/libs/libmythtv/tv_play.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8084,7 +8084,7 @@ void TV::HandleOSDIdle(PlayerContext *ctx, QString action)
80848084
}
80858085
if (idleTimerId)
80868086
KillTimer(idleTimerId);
8087-
idleTimerId = StartTimer(db_idle_timeout * 1000, __LINE__);
8087+
idleTimerId = StartTimer(db_idle_timeout, __LINE__);
80888088
}
80898089
else
80908090
{

0 commit comments

Comments
 (0)