mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-22 13:37:24 +00:00
Add check to avoid saving player pos to the
length of the given video by saving a minimum of 15 at the end
This commit is contained in:
parent
a779cdd463
commit
d59323a601
@ -215,7 +215,7 @@ if (video_data.params.save_player_pos) {
|
|||||||
const raw = player.currentTime();
|
const raw = player.currentTime();
|
||||||
const time = Math.floor(raw);
|
const time = Math.floor(raw);
|
||||||
|
|
||||||
if(lastUpdated !== time) {
|
if(lastUpdated !== time && raw <= video_data.length_seconds - 15) {
|
||||||
save_video_time(time);
|
save_video_time(time);
|
||||||
lastUpdated = time;
|
lastUpdated = time;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user