Compare commits

...

2 Commits

Author SHA1 Message Date
kadykov 753ebc47f4
Merge cb731b9548 into b673695aa2 2024-04-10 16:07:43 -04:00
kadykov cb731b9548
Use `stream_history` as a watch history source 2024-03-02 21:27:46 +00:00
1 changed files with 3 additions and 1 deletions

View File

@ -310,7 +310,9 @@ struct Invidious::User
db = DB.open("sqlite3://" + tempfile.path)
user.watched += db.query_all("SELECT url FROM streams", as: String)
user.watched += db.query_all(
"SELECT s.url FROM streams s JOIN stream_history sh ON s.uid = sh.stream_id",
as: String)
.map(&.lchop("https://www.youtube.com/watch?v="))
user.watched.uniq!