aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-06-01 08:15:33 +0000
committerMario <mario@mariovavti.com>2023-06-01 08:15:33 +0000
commit423fdc0a9618e322636a5291ed92df00115fafb0 (patch)
treef6821e46be08faf5ecddfb98fd999382b75cd043
parent396b124e84109655f7e4587589ada8044f034bfa (diff)
downloadvolse-hubzilla-423fdc0a9618e322636a5291ed92df00115fafb0.tar.gz
volse-hubzilla-423fdc0a9618e322636a5291ed92df00115fafb0.tar.bz2
volse-hubzilla-423fdc0a9618e322636a5291ed92df00115fafb0.zip
owa: workaround for friendica when using nginx until this will be fixed at their side and check prrofile uid for features instead of local channel
-rw-r--r--Zotlabs/Module/Chat.php2
-rw-r--r--Zotlabs/Module/Owa.php4
2 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Module/Chat.php b/Zotlabs/Module/Chat.php
index efe098739..fc74016ab 100644
--- a/Zotlabs/Module/Chat.php
+++ b/Zotlabs/Module/Chat.php
@@ -212,7 +212,7 @@ class Chat extends Controller {
'$online' => t('I am online'),
'$bookmark_link' => $bookmark_link,
'$bookmark' => t('Bookmark this room'),
- '$feature_encrypt' => ((feature_enabled(local_channel(),'content_encrypt')) ? true : false),
+ '$feature_encrypt' => ((feature_enabled(App::$profile['profile_uid'], 'content_encrypt')) ? true : false),
'$cipher' => $cipher,
'$linkurl' => t('Please enter a link URL:'),
'$encrypt' => t('Encrypt text'),
diff --git a/Zotlabs/Module/Owa.php b/Zotlabs/Module/Owa.php
index 920a92240..4de4d32d6 100644
--- a/Zotlabs/Module/Owa.php
+++ b/Zotlabs/Module/Owa.php
@@ -49,6 +49,10 @@ class Owa extends Controller {
if ($r) {
foreach ($r as $hubloc) {
+ // fix friendica accept header for nginx
+ if (str_starts_with($keyId, 'acct:') && $_SERVER['HTTP_ACCEPT'] === 'application/x-zot+json')
+ $_SERVER['HTTP_ACCEPT'] = 'application/x-dfrn+json, application/x-zot+json';
+
$verified = HTTPSig::verify(file_get_contents('php://input'), $hubloc['xchan_pubkey']);
if ($verified && $verified['header_signed'] && $verified['header_valid'] && ($verified['content_valid'] || (! $verified['content_signed']))) {
logger('OWA header: ' . print_r($verified,true),LOGGER_DATA);