Skip to content

Commit

Permalink
Set workaround for playback position reset when switching to main pla…
Browse files Browse the repository at this point in the history
…yer with content thumbnail

The workaround set before was not applied when switching to main player with content thumbnail from popup or background player. This commit fixes this by applying the workaround when switching to main player with content thumbnail from popup or background player.
  • Loading branch information
AudricV committed Feb 11, 2022
1 parent 2e538b8 commit 608e73e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,10 @@ public void onClick(final View v) {
break;
case R.id.detail_thumbnail_root_layout:
autoPlayEnabled = true; // forcefully start playing
// FIXME Workaround #7427
if (isPlayerAvailable()) {
player.setRecovery();
}
openVideoPlayerAutoFullscreen();
break;
case R.id.detail_title_root_layout:
Expand Down

0 comments on commit 608e73e

Please sign in to comment.