diff options
author | Mario Vavti <mario@mariovavti.com> | 2022-10-18 12:39:13 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2022-10-18 12:39:13 +0200 |
commit | e9ca17cec14c5a702cc7d656e5206a3c086dd550 (patch) | |
tree | 0770b4274c0e109056199db55429b0801b3ce60c /Zotlabs/Lib/Activity.php | |
parent | f70956964be5792be296a4e3ec1889a4be2fd475 (diff) | |
download | volse-hubzilla-e9ca17cec14c5a702cc7d656e5206a3c086dd550.tar.gz volse-hubzilla-e9ca17cec14c5a702cc7d656e5206a3c086dd550.tar.bz2 volse-hubzilla-e9ca17cec14c5a702cc7d656e5206a3c086dd550.zip |
fix php warnings
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 26aef8104..633f18235 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -68,6 +68,10 @@ class Activity { else { $m = parse_url($url); + if (!$m) { + return null; + } + // handle bearcaps if ($m['scheme'] === 'bear') { $params = explode('&', $m['query']); @@ -2262,6 +2266,10 @@ class Activity { $obj_actor = ((isset($act->obj['actor'])) ? $act->obj['actor'] : $act->get_actor('attributedTo', $act->obj)); + if (!isset($obj_actor['id'])) { + return false; + } + // ensure we store the original actor self::actor_store($obj_actor['id'], $obj_actor); |