diff options
| author | winter | 2025-01-17 19:21:01 +0000 |
|---|---|---|
| committer | winter | 2025-01-17 19:21:01 +0000 |
| commit | 141f11ba980fe019c12f0a8fa456f520ec48e522 (patch) | |
| tree | 3a5bda8ef620c1ff63e52e9d90d44eff218edeca | |
| parent | 0eca1457a3a10486af4dea0d3449d1f73dd52a27 (diff) | |
fix the reshare timeline thing even more
| -rw-r--r-- | Digitigrade/Model/Interaction.php | 2 |
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); |
