Skip to content

Commit

Permalink
Fix a misuse of MythTimer.
Browse files Browse the repository at this point in the history
This was what forced the [9402858] workaround earlier this week.

Refs #11255.
  • Loading branch information
daniel-kristjansson committed Jan 27, 2013
1 parent ee5ac3d commit 926464a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -7946,7 +7946,8 @@ void TV::UpdateOSDSignal(const PlayerContext *ctx, const QStringList &strlist)
SignalMonitorList slist = SignalMonitorValue::Parse(strlist);

InfoMap infoMap = ctx->lastSignalUIInfo;
if (ctx->lastSignalUIInfoTime.elapsed() > 5000 ||
if ((!ctx->lastSignalUIInfoTime.isRunning() ||
(ctx->lastSignalUIInfoTime.elapsed() > 5000)) ||
infoMap["callsign"].isEmpty())
{
ctx->lastSignalUIInfo.clear();
Expand Down

0 comments on commit 926464a

Please sign in to comment.