埋点 - video播放暂停+1

This commit is contained in:
renhaoting 2026-01-05 13:37:14 +08:00
parent af87e4da5d
commit d1bbf7c523
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ class HomeItemFragment : AppViewsEmptyViewModelFragment<ViewBinding>() {
mapOf( mapOf(
"video_id" to it.id, "video_id" to it.id,
"watch_duration" to mCurPlayedSecond.toInt(), //Second "watch_duration" to mCurPlayedSecond.toInt(), //Second
"is_completed" to (Math.abs(mTotalDuration - mCurPlayedSecond) < 2), "is_completed" to (mCurPlayedSecond>= mTotalDuration || Math.abs(mTotalDuration - mCurPlayedSecond) < 2),
)) ))
} }
} }