Some more class changes

This commit is contained in:
Michael 2023-09-03 03:35:10 +00:00
parent 53bd34ed8d
commit 3c84a22b32
2 changed files with 18 additions and 19 deletions

View file

@ -23,7 +23,6 @@ namespace Friendica\Module\Update;
use Friendica\Content\Conversation;
use Friendica\Core\System;
use Friendica\DI;
use Friendica\Module\Conversation\Channel as ChannelModule;
/**
@ -39,7 +38,7 @@ class Channel extends ChannelModule
$o = '';
if (!empty($request['force'])) {
$o = DI::conversation()->render(self::getItems($request), Conversation::MODE_CHANNEL, true, false, 'created', DI::userSession()->getLocalUserId());
$o = $this->conversation->render($this->getItems($request), Conversation::MODE_CHANNEL, true, false, 'created', $this->session->getLocalUserId());
}
System::htmlUpdateExit($o);