diff options
author | Mario <mario@mariovavti.com> | 2022-09-08 20:02:22 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-09-08 20:02:22 +0000 |
commit | 990a3af2a7349e07c10224cf2a023d179ecfd6ca (patch) | |
tree | 75c6f7bcb2f7d630a3fc5395e7f3480541e4fe25 /Zotlabs/Lib/Libzot.php | |
parent | 1f5a23143aa5aa1fb3273b8a9c74782cd0441fde (diff) | |
download | volse-hubzilla-990a3af2a7349e07c10224cf2a023d179ecfd6ca.tar.gz volse-hubzilla-990a3af2a7349e07c10224cf2a023d179ecfd6ca.tar.bz2 volse-hubzilla-990a3af2a7349e07c10224cf2a023d179ecfd6ca.zip |
php8: random cleanup and warning fixes
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 8eb5ce647..09ce3a9de 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -304,8 +304,14 @@ class Libzot { $record = Zotfinger::exec($url, $channel); + if (!$record) { + return false; + } + // Check the HTTP signature $hsig = $record['signature']; + $hsig_valid = false; + if ($hsig && $hsig['signer'] === $url && $hsig['header_valid'] === true && $hsig['content_valid'] === true) { $hsig_valid = true; } |