Fix not publishing update of remote timeline (#13745)
* Fix not publishing update of remote timeline * fix @ missing * if/unless to if/else
This commit is contained in:
parent
7af8af3b4a
commit
d8bad8fbf6
3 changed files with 30 additions and 7 deletions
|
@ -140,14 +140,22 @@ class RemoveStatusService < BaseService
|
|||
return unless @status.public_visibility?
|
||||
|
||||
redis.publish('timeline:public', @payload)
|
||||
redis.publish('timeline:public:local', @payload) if @status.local?
|
||||
if @status.local?
|
||||
redis.publish('timeline:public:local', @payload)
|
||||
else
|
||||
redis.publish('timeline:public:remote', @payload)
|
||||
end
|
||||
end
|
||||
|
||||
def remove_from_media
|
||||
return unless @status.public_visibility?
|
||||
|
||||
redis.publish('timeline:public:media', @payload)
|
||||
redis.publish('timeline:public:local:media', @payload) if @status.local?
|
||||
if @status.local?
|
||||
redis.publish('timeline:public:local:media', @payload)
|
||||
else
|
||||
redis.publish('timeline:public:remote:media', @payload)
|
||||
end
|
||||
end
|
||||
|
||||
def remove_media
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue