Don't generate stream entries for streamables of remote accounts

signup-info-prompt glitch/v0.6
Eugen Rochko 2016-09-24 14:42:29 +02:00
parent fb94013796
commit a706f1af04
1 changed files with 1 additions and 1 deletions

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