mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
Fix PHP warning
This commit is contained in:
parent
ea35ec4d6e
commit
148c9cdfe6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue