diff --git a/Plugin/Config.php b/Plugin/Config.php
index fe33975..119f0f8 100644
--- a/Plugin/Config.php
+++ b/Plugin/Config.php
@@ -480,9 +480,9 @@ protected function _handleConnectionChanges(
. '
url=' . $newConnection['api_url']
. '
use curl=' . (!empty($finalUseCurl) ? 'true' : 'false')
. '
api key=******'
- . '
tls cert path=' . ($finalCert ?? "")
- . '
tls key path=' . ($finalKey ?? "")
- . '
tls ca cert path=' . ($finalCaCert ?? "")
+ . '
tls cert path=' . $finalCert
+ . '
tls key path=' . $finalKey
+ . '
tls ca cert path=' . $finalCaCert
. '
tls verify peer=' . (!empty($finalVerify) ? 'true' : 'false')
. '
: ';
throw new BouncerException($message . $e->getMessage());