Merge pull request #1175 from Bnyro/master

don't seek to watch position when end of video
This commit is contained in:
Bnyro 2022-08-26 17:53:52 +02:00 committed by GitHub
commit 5e01f2c9c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -981,7 +981,8 @@ class PlayerFragment : BaseFragment() {
Thread {
try {
position = DatabaseHolder.db.watchPositionDao().findById(videoId!!).position
if (position!! < streams.duration!! * 0.9) position = null
// position is almost the end of the video => don't seek, start from beginning
if (position!! > streams.duration!! * 1000 * 0.9) position = null
} catch (e: Exception) {
}
}.await()