]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Thread.php
ReWork Notification Model/Module/Object/Repository/Factory
[friendica.git] / src / Object / Thread.php
index 4eda1f8f7eedd2c730b36f26c9613b2d3774c2a6..0d0def06120927c00b57f664b9494316b2af2cd4 100644 (file)
@@ -4,9 +4,9 @@
  */
 namespace Friendica\Object;
 
-use Friendica\BaseObject;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
+use Friendica\DI;
 use Friendica\Protocol\Activity;
 use Friendica\Util\Security;
 
@@ -15,7 +15,7 @@ use Friendica\Util\Security;
  *
  * We should think about making this a SPL Iterator
  */
-class Thread extends BaseObject
+class Thread
 {
        private $parents = [];
        private $mode = null;
@@ -52,7 +52,7 @@ class Thread extends BaseObject
                        return;
                }
 
-               $a = self::getApp();
+               $a = DI::app();
 
                switch ($mode) {
                        case 'network':
@@ -61,7 +61,7 @@ class Thread extends BaseObject
                                $this->writable = true;
                                break;
                        case 'profile':
-                               $this->profile_owner = $a->profile['profile_uid'];
+                               $this->profile_owner = $a->profile['uid'];
                                $this->writable = Security::canWriteToUserWall($this->profile_owner);
                                break;
                        case 'display':