aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-10-14 15:23:23 +0000
committerMario <mario@mariovavti.com>2022-10-14 15:23:23 +0000
commitf70956964be5792be296a4e3ec1889a4be2fd475 (patch)
tree0c903959fb8cd638ddb491342cc59c8992db1877 /Zotlabs
parent4547a9d9d3e40330750729be3b1c302e6c7456c9 (diff)
downloadvolse-hubzilla-f70956964be5792be296a4e3ec1889a4be2fd475.tar.gz
volse-hubzilla-f70956964be5792be296a4e3ec1889a4be2fd475.tar.bz2
volse-hubzilla-f70956964be5792be296a4e3ec1889a4be2fd475.zip
fix php warning
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/Libzot.php2
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');