diff options
author | Mario <mario@mariovavti.com> | 2022-09-28 15:21:11 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-09-28 15:21:11 +0000 |
commit | 13476d500370a6aece6d1969c2a0fb0391039f83 (patch) | |
tree | d04c7a06f02e51ef04cc7ede93c0a0baadc8927d /Zotlabs | |
parent | 05bd2a1f9e1f2fc6f0c501201dd73467443799ce (diff) | |
download | volse-hubzilla-13476d500370a6aece6d1969c2a0fb0391039f83.tar.gz volse-hubzilla-13476d500370a6aece6d1969c2a0fb0391039f83.tar.bz2 volse-hubzilla-13476d500370a6aece6d1969c2a0fb0391039f83.zip |
remove unnecessary check
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Daemon/Externals.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Externals.php b/Zotlabs/Daemon/Externals.php index fb35a65c7..5b7954c2f 100644 --- a/Zotlabs/Daemon/Externals.php +++ b/Zotlabs/Daemon/Externals.php @@ -133,7 +133,7 @@ class Externals { continue; } - $obj_id = isset($message['object']['id']) ?? $message['object']; + $obj_id = $message['object']['id'] ?? $message['object']; Libzot::fetch_conversation($importer, $obj_id); $total++; |