aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/Model
diff options
context:
space:
mode:
authorwinter2025-01-17 19:21:01 +0000
committerwinter2025-01-17 19:21:01 +0000
commit141f11ba980fe019c12f0a8fa456f520ec48e522 (patch)
tree3a5bda8ef620c1ff63e52e9d90d44eff218edeca /Digitigrade/Model
parent0eca1457a3a10486af4dea0d3449d1f73dd52a27 (diff)
fix the reshare timeline thing even more
Diffstat (limited to 'Digitigrade/Model')
-rw-r--r--Digitigrade/Model/Interaction.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Digitigrade/Model/Interaction.php b/Digitigrade/Model/Interaction.php
index c24d8cc..e5619bb 100644
--- a/Digitigrade/Model/Interaction.php
+++ b/Digitigrade/Model/Interaction.php
@@ -69,7 +69,7 @@ class Interaction extends PushableModel {
$reason = new ReasonReshared($this->author);
$item = new TimelineItem($this->target, $reason);
- foreach ($this->author->findFollowers() as $actor) {
+ foreach (array_merge($this->author->findFollowers(), [$this->author]) as $actor) {
if (!$actor->isLocal)
return;
$user = UserAccount::findByLinkedActor($actor);