Skip to content

Commit

Permalink
Update for PHP 8.3 and Phalcon 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jorikfon committed Oct 3, 2024
1 parent ee24189 commit 37d4fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Asterisk/Configs/SIPConf.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ private function getPeers(): array
$arr_data['permit'] = ($network_filter === null) ? '' : $network_filter->permit;
$arr_data['deny'] = ($network_filter === null) ? '' : $network_filter->deny;

$arr_data['transport'] = trim($arr_data['transport']);
$arr_data['transport'] = trim($arr_data['transport']??'');
// Retrieve used codecs.
$arr_data['codecs'] = $this->getCodecs();
$arr_data['enableRecording'] = $sip_peer->enableRecording !== '0';
Expand Down

0 comments on commit 37d4fc1

Please sign in to comment.