diff --git a/src/Module/Conversation/Channel.php b/src/Module/Conversation/Channel.php index 06340f024..3b0b338b5 100644 --- a/src/Module/Conversation/Channel.php +++ b/src/Module/Conversation/Channel.php @@ -16,6 +16,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . + * */ namespace Friendica\Module\Conversation; diff --git a/src/Module/Update/Channel.php b/src/Module/Update/Channel.php index aceeae15a..998fb8bf0 100644 --- a/src/Module/Update/Channel.php +++ b/src/Module/Update/Channel.php @@ -17,7 +17,6 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * See update_profile.php for documentation */ namespace Friendica\Module\Update; @@ -36,11 +35,11 @@ class Channel extends ChannelModule { protected function rawContent(array $request = []) { - $this->parseRequest(); + $this->parseRequest($request); $o = ''; if (!empty($request['force'])) { - $o = DI::conversation()->render(self::getItems(), Conversation::MODE_CHANNEL, true, false, 'created', DI::userSession()->getLocalUserId()); + $o = DI::conversation()->render(self::getItems($request), Conversation::MODE_CHANNEL, true, false, 'created', DI::userSession()->getLocalUserId()); } System::htmlUpdateExit($o);