diff options
author | Mario <mario@mariovavti.com> | 2022-10-14 15:23:23 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-10-14 15:23:23 +0000 |
commit | f70956964be5792be296a4e3ec1889a4be2fd475 (patch) | |
tree | 0c903959fb8cd638ddb491342cc59c8992db1877 /Zotlabs/Lib/Libzot.php | |
parent | 4547a9d9d3e40330750729be3b1c302e6c7456c9 (diff) | |
download | volse-hubzilla-f70956964be5792be296a4e3ec1889a4be2fd475.tar.gz volse-hubzilla-f70956964be5792be296a4e3ec1889a4be2fd475.tar.bz2 volse-hubzilla-f70956964be5792be296a4e3ec1889a4be2fd475.zip |
fix php warning
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 01d403c09..2da829ba2 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2007,7 +2007,7 @@ class Libzot { } } - if ($AS->obj['actor'] && $AS->obj['actor']['id'] && $AS->obj['actor']['id'] !== $AS->actor['id']) { + if (isset($AS->obj['actor']['id']) && $AS->obj['actor']['id'] !== $AS->actor['id']) { $y = import_author_xchan(['url' => $AS->obj['actor']['id']]); if (!$y) { logger('FOF Activity: no object actor'); |