We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30ce906 commit 54ef604Copy full SHA for 54ef604
1 file changed
app/src/main/java/org/schabi/newpipe/player/Player.java
@@ -609,14 +609,14 @@ public FastSeekDirection getFastSeekDirection(
609
return FastSeekDirection.NONE;
610
}
611
if (portion == DisplayPortion.LEFT) {
612
- // Check if we can rewind
+ // Check if it's possible to rewind
613
// Small puffer to eliminate infinite rewind seeking
614
if (simpleExoPlayer.getCurrentPosition() < 500L) {
615
616
617
return FastSeekDirection.BACKWARD;
618
} else if (portion == DisplayPortion.RIGHT) {
619
- // Check if the can fast-forward
+ // Check if it's possible to fast-forward
620
if (currentState == STATE_COMPLETED
621
|| simpleExoPlayer.getCurrentPosition()
622
>= simpleExoPlayer.getDuration()) {
0 commit comments