Browse Source

Remove arguments in association reader (#3305)

closed-social-glitch-2
Yamagishi Kazutoshi 7 years ago
committed by Eugen Rochko
parent
commit
bca334cd28
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/notification.rb

+ 1
- 1
app/models/notification.rb View File

@ -49,7 +49,7 @@ class Notification < ApplicationRecord
cache_associated :from_account, status: STATUS_INCLUDES, mention: [status: STATUS_INCLUDES], favourite: [:account, status: STATUS_INCLUDES], follow: :account
def activity(eager_loaded = true)
eager_loaded ? send(activity_type.downcase) : super
eager_loaded ? send(activity_type.underscore) : super()
end
def type

Loading…
Cancel
Save