fix: disable ssl checks in api client to avoid problems with buspro

This commit is contained in:
Björn Fromme
2024-04-11 10:41:34 +02:00
parent a04dc7bee8
commit e56d4f0455
+3 -1
View File
@@ -153,7 +153,9 @@ class ApiClient
$response = $this->httpClient->request('GET', $this->config['bpn_url'], [
'query' => [
'operation' => $body,
]
],
'verify_peer' => false,
'verify_host' => false,
]);
$xml = $response->getContent();