Browse Source

Don't generate stream entries for streamables of remote accounts

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
a706f1af04
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/concerns/streamable.rb

+ 1
- 1
app/models/concerns/streamable.rb View File

@ -25,7 +25,7 @@ module Streamable
end
after_create do
self.account.stream_entries.create!(activity: self)
self.account.stream_entries.create!(activity: self) if self.account.local?
end
end
end

Loading…
Cancel
Save