0
0
Fork 0

Do not display non-Status stream entries anymore

This commit is contained in:
Eugen Rochko 2017-02-17 02:20:52 +01:00
parent dbd80465c8
commit 5ddad41245
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ class StreamEntry < ApplicationRecord
end
def activity
!new_record? ? send(activity_type.underscore) : super
!new_record? ? send(activity_type.underscore) || super : super
end
private