Properly clear notifications when viewing feed

This commit is contained in:
Omar Roth 2018-07-22 11:36:47 -05:00
parent 09cd7bcc66
commit 0b0e56504a
1 changed files with 2 additions and 1 deletions

View File

@ -1193,7 +1193,8 @@ get "/feed/subscriptions" do |env|
end
PG_DB.exec("UPDATE users SET notifications = $1 WHERE id = $2", [] of String, user.id)
env.set "notifications", 0
user.notifications = [] of String
env.set "user", user
templated "subscriptions"
else