aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Storage/BasicAuth.php
diff options
context:
space:
mode:
authorZot <mike@macgirvin.com>2020-05-06 11:00:29 +0200
committerMario <mario@mariovavti.com>2020-05-06 11:00:29 +0200
commit2cb0cade7b41e1251fb90e857f690ec155a10c9e (patch)
tree053bbcc9c213bd2e1da2b4a1c464be771929b2c3 /Zotlabs/Storage/BasicAuth.php
parent06d1cf83d2b1acfef5529fe388d2502bea381881 (diff)
downloadvolse-hubzilla-2cb0cade7b41e1251fb90e857f690ec155a10c9e.tar.gz
volse-hubzilla-2cb0cade7b41e1251fb90e857f690ec155a10c9e.tar.bz2
volse-hubzilla-2cb0cade7b41e1251fb90e857f690ec155a10c9e.zip
Revert "issue generating photo thumbnails when uploaded via davfs"
This reverts commit 7a0d9a449492ff3b5ef97b997310ed26ec1f53e4.
Diffstat (limited to 'Zotlabs/Storage/BasicAuth.php')
-rw-r--r--Zotlabs/Storage/BasicAuth.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/Zotlabs/Storage/BasicAuth.php b/Zotlabs/Storage/BasicAuth.php
index a5c01fbb7..3a48f5004 100644
--- a/Zotlabs/Storage/BasicAuth.php
+++ b/Zotlabs/Storage/BasicAuth.php
@@ -2,6 +2,7 @@
namespace Zotlabs\Storage;
+use App;
use Sabre\DAV;
use Sabre\HTTP\RequestInterface;
use Sabre\HTTP\ResponseInterface;
@@ -128,6 +129,16 @@ class BasicAuth extends DAV\Auth\Backend\AbstractBasic {
$this->channel_name = $r['channel_address'];
$this->channel_id = $r['channel_id'];
$this->channel_hash = $this->observer = $r['channel_hash'];
+
+ if ($this->observer) {
+ $r = q("select * from xchan where xchan_hash = '%s' limit 1",
+ dbesc($this->observer)
+ );
+ if ($r) {
+ App::set_observer(array_shift($r));
+ }
+ }
+
$_SESSION['uid'] = $r['channel_id'];
$_SESSION['account_id'] = $r['channel_account_id'];
$_SESSION['authenticated'] = true;