Remove refreshing of Live TV program data in player

This commit is contained in:
Niels van Velzen
2024-05-28 16:14:44 +02:00
committed by Niels van Velzen
parent 0690c1c898
commit a257651f8e

View File

@ -1510,10 +1510,6 @@ public class PlaybackController implements PlaybackControllerNotifiable {
} }
} }
if (isLiveTv && mCurrentProgramEnd != null && mCurrentProgramEnd.isAfter(LocalDateTime.now())) {
// crossed fire off an async routine to update the program info
updateTvProgramInfo();
}
if (mFragment != null && finishedInitialSeek) if (mFragment != null && finishedInitialSeek)
mFragment.updateSubtitles(mCurrentPosition - getSubtitleDelay()); mFragment.updateSubtitles(mCurrentPosition - getSubtitleDelay());
} }