Use `stream_history` as a watch history source

This commit is contained in:
kadykov 2024-03-02 21:27:46 +00:00 committed by GitHub
parent e8a36985af
commit cb731b9548
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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!