]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Update/Channel.php
Simplify query merge, changed update behaviour
[friendica.git] / src / Module / Update / Channel.php
index 998fb8bf0ef4726306d3e34b13805dd4f165fad4..333c63b2de754b974e3a61fe1a8e02a412b7497c 100644 (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,13 @@ 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());
+                       if ($this->timeline->isChannel(self::$selectedTab)) {
+                               $items = $this->getChannelItems();
+                       } else {
+                               $items = $this->getCommunityItems();
+                       }
+
+                       $o = $this->conversation->render($items, Conversation::MODE_CHANNEL, true, false, 'created', $this->session->getLocalUserId());
                }
 
                System::htmlUpdateExit($o);