From: Roland Häder Date: Sat, 18 Jun 2022 03:41:19 +0000 (+0200) Subject: Fixed TypeError: "Argument 1 passed to Friendica\Core\System::httpExit() must be X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=69cda4f76027786428d9bbec03d5ba0602cae120;p=friendica.git Fixed TypeError: "Argument 1 passed to Friendica\Core\System::httpExit() must be of the type string, null given, called in /var/www/.../src/Module/DFRN/Poll.php on line 37" --- diff --git a/src/Module/DFRN/Poll.php b/src/Module/DFRN/Poll.php index 516f863845..65f113b9db 100644 --- a/src/Module/DFRN/Poll.php +++ b/src/Module/DFRN/Poll.php @@ -33,7 +33,6 @@ class Poll extends BaseModule { protected function rawContent(array $request = []) { - $last_update = $request['last_update'] ?? ''; - System::httpExit(OStatus::feed($this->parameters['nickname'], $last_update, 10), Response::TYPE_ATOM); + System::httpExit(OStatus::feed($this->parameters['nickname'], $request['last_update'] ?? '', 10) ?? '', Response::TYPE_ATOM); } }