修复 followers_by_type `can't cast Class` 的问题

This commit is contained in:
Forrest Ye 2018-04-14 20:39:19 +08:00
parent 8892d0da92
commit 71e32b5b4e
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ module ActsAsFollowable
ids = Follow.
where('followable_id' => self.id,
'followable_type' => class_name(self),
'follower_type' => follower_type
'follower_type' => follower_type.name
).pluck('follower_id')
return follower_type.find(ids)
end