1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-08-29 09:02:19 +00:00

Merge pull request #2912 from mauriciocolli/fix-wrong-thread-access

Fix for player access out of its creation thread
This commit is contained in:
Tobias Groza
2019-12-31 10:55:12 +01:00
committed by GitHub

View File

@@ -319,6 +319,7 @@ public class MediaSourceManager {
private Observable<Long> getEdgeIntervalSignal() {
return Observable.interval(progressUpdateIntervalMillis, TimeUnit.MILLISECONDS)
.observeOn(AndroidSchedulers.mainThread())
.filter(ignored ->
playbackListener.isApproachingPlaybackEdge(playbackNearEndGapMillis));
}