Bugfix/fix voice call active text

This commit is contained in:
Luca Haid
2024-04-16 14:19:08 +00:00
parent 2747942234
commit 826928e37a

View File

@@ -45,9 +45,6 @@ class VoiceCallHistoryModel {
for ($i = 0; $i < count($callHistory); $i++) {
$call = $callHistory[$i];
$date = date("Y-m-d H:i:s", strtotime($call["calldate2"] . " UTC"));
$date = new DateTime($date, new DateTimeZone('UTC'));
$date->setTimezone(new DateTimeZone('Europe/Vienna'));
$date = $date->format('Y-m-d H:i:s');
$modifiedCall = [
"uid" => $call["uniqueid"],