1
0
Fork 0
forked from gitea/nas

Fix activitypub group reboot not working

This commit is contained in:
KMY 2023-03-14 12:53:33 +09:00
parent 05211ac206
commit 615bfa85bb
2 changed files with 5 additions and 5 deletions

View file

@ -89,6 +89,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
fetch_replies(@status)
distribute
forward_for_reply
join_group!
end
def distribute
@ -424,4 +425,8 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
poll.reload
retry
end
def join_group!
GroupReblogService.new.call(@status)
end
end