1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-04-11 18:49:13 -04:00

Fix /clear_watch_history

This commit is contained in:
Omar Roth 2018-08-25 21:33:33 -05:00
parent 7fd0f93d02
commit a1ad561b98

@ -1201,8 +1201,9 @@ get "/clear_watch_history" do |env|
if user
user = user.as(User)
sid = env.get("sid").as(String)
PG_DB.exec("UPDATE users SET watched = '{}' WHERE id = $1", user.id)
PG_DB.exec("UPDATE users SET watched = '{}' WHERE $1 = ANY(id)", sid)
end
env.redirect referer