diff options
author | Mario <mario@mariovavti.com> | 2021-01-17 13:35:13 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-17 13:35:13 +0000 |
commit | 38a48de826287cc8360768794824e7d00e8f2ef8 (patch) | |
tree | 40658a29ebfe268b99d192e3d6c921497cad1c86 /Zotlabs/Lib | |
parent | 485a232ae68617093f58bed6c15a52f80116cdae (diff) | |
download | volse-hubzilla-38a48de826287cc8360768794824e7d00e8f2ef8.tar.gz volse-hubzilla-38a48de826287cc8360768794824e7d00e8f2ef8.tar.bz2 volse-hubzilla-38a48de826287cc8360768794824e7d00e8f2ef8.zip |
app_render() check against zot6
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Apps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 7b980b8d3..05b2ba177 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -524,7 +524,7 @@ class Apps { } elseif(remote_channel()) { $observer = \App::get_observer(); - if($observer && $observer['xchan_network'] === 'zot') { + if($observer && in_array($observer['xchan_network'], ['zot6', 'zot'])) { // some folks might have xchan_url redirected offsite, use the connurl $x = parse_url($observer['xchan_connurl']); if($x) { |