feature/webview-softphone #1

Merged
jknapp merged 6 commits from feature/webview-softphone into main 2026-04-27 12:54:33 +00:00
2 changed files with 0 additions and 3 deletions
Showing only changes of commit fe8ddd51bb - Show all commits

View File

@@ -177,7 +177,6 @@ class TWP_Auto_Updater {
$response = curl_exec($ch); $response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if (!$response || $http_code !== 200) { if (!$response || $http_code !== 200) {
error_log("TWP Auto-Updater: Gitea API returned status $http_code"); error_log("TWP Auto-Updater: Gitea API returned status $http_code");

View File

@@ -119,7 +119,6 @@ class TWP_FCM {
$response = curl_exec($ch); $response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($http_code !== 200) { if ($http_code !== 200) {
error_log("TWP FCM: Failed to send notification. HTTP $http_code: $response"); error_log("TWP FCM: Failed to send notification. HTTP $http_code: $response");
@@ -173,7 +172,6 @@ class TWP_FCM {
$response = curl_exec($ch); $response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($http_code !== 200) { if ($http_code !== 200) {
error_log("TWP FCM: Failed to get access token. HTTP $http_code: $response"); error_log("TWP FCM: Failed to get access token. HTTP $http_code: $response");