Speed up check of notification request validity.

No need to load full account records here.
This commit is contained in:
David Roetzel 2024-08-01 13:46:30 +02:00
parent 584b1524dd
commit 6c76502527
No known key found for this signature in database

View File

@ -47,6 +47,6 @@ class NotificationRequest < ApplicationRecord
private
def prepare_notifications_count
self.notifications_count = Notification.where(account: account, from_account: from_account, filtered: true).limit(MAX_MEANINGFUL_COUNT).count
self.notifications_count = Notification.where(account_id: account_id, from_account_id: from_account_id, filtered: true).limit(MAX_MEANINGFUL_COUNT).count
end
end