From: Art4 Date: Sun, 12 Jan 2025 13:20:01 +0000 (+0000) Subject: Fix PHP warning X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=148c9cdfe6a4908b728918aa98a211946945160e;p=friendica.git Fix PHP warning --- diff --git a/src/App.php b/src/App.php index 3ffce9114c..73f2913b1a 100644 --- a/src/App.php +++ b/src/App.php @@ -230,7 +230,7 @@ class App private function determineLogChannel(array $argv): string { - $command = strtolower($argv[1]) ?? ''; + $command = strtolower($argv[1] ?? ''); if ($command === 'daemon' || $command === 'jetstream') { return LogChannel::DAEMON;