Prevent embeds from appearing in watch history

This commit is contained in:
Omar Roth 2019-07-05 16:55:06 -05:00
parent fd43b16213
commit 775612ec5a
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 3 additions and 3 deletions

View File

@ -619,9 +619,9 @@ get "/embed/:id" do |env|
params.annotations = true
end
if watched && !watched.includes? id
PG_DB.exec("UPDATE users SET watched = watched || $1 WHERE email = $2", [id], user.as(User).email)
end
# if watched && !watched.includes? id
# PG_DB.exec("UPDATE users SET watched = watched || $1 WHERE email = $2", [id], user.as(User).email)
# end
if notifications && notifications.includes? id
PG_DB.exec("UPDATE users SET notifications = array_remove(notifications, $1) WHERE email = $2", id, user.as(User).email)