diff options
author | bsun0000 <bsun0000@gmail.com> | 2022-10-19 00:05:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-10-19 00:07:47 +0530 |
commit | 5318156f1c6e9567b7d44910d3301ca4cc876784 (patch) | |
tree | c1ef87cde2c1f50b4803f8b26eae2df2d8cbd026 | |
parent | d5d1df8afdd532cc889f9d95be0740668a0776fe (diff) | |
download | hypervideo-pre-5318156f1c6e9567b7d44910d3301ca4cc876784.tar.lz hypervideo-pre-5318156f1c6e9567b7d44910d3301ca4cc876784.tar.xz hypervideo-pre-5318156f1c6e9567b7d44910d3301ca4cc876784.zip |
[extractor/youtube] Mark videos as fully watched
Closes #2555
Authored by: bsun0000
-rw-r--r-- | yt_dlp/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py index a12e5b03e..e894f74cd 100644 --- a/yt_dlp/extractor/youtube.py +++ b/yt_dlp/extractor/youtube.py @@ -2955,7 +2955,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): # these seem to mark watchtime "history" in the real world # they're required, so send in a single value qs.update({ - 'st': video_length, + 'st': 0, 'et': video_length, }) |