diff options
| author | winter | 2025-05-04 18:47:22 +0100 |
|---|---|---|
| committer | winter | 2025-05-04 18:47:22 +0100 |
| commit | 8b4bac25d588720f88d178cfd71fc8a8361e2ff5 (patch) | |
| tree | 0a30150a07958740b2bb240d4fccb081607943b7 /Digitigrade | |
| parent | 2f3377290a9478aff1c43558167fe8566787bc3a (diff) | |
fix interacting with notes from instances with no instance metadata
Diffstat (limited to 'Digitigrade')
| -rw-r--r-- | Digitigrade/Model/Actor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Digitigrade/Model/Actor.php b/Digitigrade/Model/Actor.php index d18c1f5..ffaf4e8 100644 --- a/Digitigrade/Model/Actor.php +++ b/Digitigrade/Model/Actor.php @@ -359,7 +359,7 @@ class Actor extends PushableModel implements RpcReceiver { return $relation != null; } - public function findHomeInstance(): Instance { + public function findHomeInstance(): ?Instance { if ($this->isLocal) { // can't do this because we don't keep track of ourself in the instance table throw new \RuntimeException("attempted to find the instance of a local actor"); |
