diff options
author | Mario Vavti <mario@mariovavti.com> | 2022-11-02 10:38:40 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2022-11-02 10:38:40 +0100 |
commit | 1cf659033b376026aecaec7951c743f78c2b0511 (patch) | |
tree | 184de643558c6b445e1aa495378013f0493bfbbe /Zotlabs/Widget | |
parent | 3dc552769055d7c6cefd8f4779fff1c9f123bf16 (diff) | |
download | volse-hubzilla-1cf659033b376026aecaec7951c743f78c2b0511.tar.gz volse-hubzilla-1cf659033b376026aecaec7951c743f78c2b0511.tar.bz2 volse-hubzilla-1cf659033b376026aecaec7951c743f78c2b0511.zip |
set hubloc_connected in mod fhublocs otherwise the hublocs might be removed by prune_hub_reinstalls()
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Messages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 267467bb0..38c822502 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -148,7 +148,7 @@ class Messages { } $entries[$i]['author_name'] = $item['author']['xchan_name']; - $entries[$i]['author_addr'] = (($item['author']['xchan_addr']) ? $item['author']['xchan_addr'] : $item['author']['xchan_url']); + $entries[$i]['author_addr'] = $item['author']['xchan_addr'] ?? $item['author']['xchan_url']; $entries[$i]['info'] = $info; $entries[$i]['created'] = datetime_convert('UTC', date_default_timezone_get(), $item['created']); $entries[$i]['summary'] = $summary; |