mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Merge pull request #2750 from 11Tuvork28/patch-2
Removes annoying video switching | Fixes #2736
This commit is contained in:
commit
8231216371
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue