mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Prevent embeds from appearing in watch history
This commit is contained in:
parent
fd43b16213
commit
775612ec5a
1 changed files with 3 additions and 3 deletions
|
@ -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 a new issue