mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 08:41:00 +00:00
deliver public post with hashtag to all hashtag followers
This commit is contained in:
parent
d0ed35591b
commit
0c991d1faf
1 changed files with 6 additions and 6 deletions
|
@ -769,8 +769,8 @@ class Post(StatorModel):
|
||||||
# deliver edit to all previously interacted to this post
|
# deliver edit to all previously interacted to this post
|
||||||
for interaction in self.interactions.all():
|
for interaction in self.interactions.all():
|
||||||
targets.add(interaction.identity)
|
targets.add(interaction.identity)
|
||||||
# deliver to all hashtag followers
|
if self.visibility == Post.Visibilities.public and self.hashtags:
|
||||||
if self.hashtags:
|
# deliver public post with hashtag to all hashtag followers
|
||||||
for follow in HashtagFollow.objects.by_hashtags(
|
for follow in HashtagFollow.objects.by_hashtags(
|
||||||
self.hashtags
|
self.hashtags
|
||||||
).prefetch_related("identity"):
|
).prefetch_related("identity"):
|
||||||
|
|
Loading…
Reference in a new issue