diff --git a/app/controllers/readings_controller.rb b/app/controllers/readings_controller.rb index fb7112b76..6482cd7c9 100644 --- a/app/controllers/readings_controller.rb +++ b/app/controllers/readings_controller.rb @@ -8,6 +8,6 @@ class ReadingsController < ApplicationController private def mark_bubble_notifications_read - Current.user.notifications.where(bubble: @bubble).read_all + Current.user.notifications.unread.where(bubble: @bubble).read_all end end