We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e25442 commit f01f306Copy full SHA for f01f306
src/LaunchDarkly/Impl/Integrations/CurlEventPublisher.php
@@ -109,7 +109,7 @@ private function createPowershellArgs(string $payloadFile): string
109
$headerString = "";
110
foreach ($this->_eventHeaders as $key => $value) {
111
$escapedKey = str_replace("'", "''", $key);
112
- $escapedValue = str_replace("'", "''", $value);
+ $escapedValue = str_replace("'", "''", strval($value));
113
$headerString .= sprintf('"%s"="%s";', $escapedKey, $escapedValue);
114
}
115
0 commit comments