forked from midou/invidious
Prevent embeds from appearing in watch history
This commit is contained in:
parent
fd43b16213
commit
775612ec5a
@ -619,9 +619,9 @@ get "/embed/:id" do |env|
|
|||||||
params.annotations = true
|
params.annotations = true
|
||||||
end
|
end
|
||||||
|
|
||||||
if watched && !watched.includes? id
|
# if watched && !watched.includes? id
|
||||||
PG_DB.exec("UPDATE users SET watched = watched || $1 WHERE email = $2", [id], user.as(User).email)
|
# PG_DB.exec("UPDATE users SET watched = watched || $1 WHERE email = $2", [id], user.as(User).email)
|
||||||
end
|
# end
|
||||||
|
|
||||||
if notifications && notifications.includes? id
|
if notifications && notifications.includes? id
|
||||||
PG_DB.exec("UPDATE users SET notifications = array_remove(notifications, $1) WHERE email = $2", id, user.as(User).email)
|
PG_DB.exec("UPDATE users SET notifications = array_remove(notifications, $1) WHERE email = $2", id, user.as(User).email)
|
||||||
|
Loading…
Reference in New Issue
Block a user