diff --git a/AutoCollection/CorrelationContextManager.ts b/AutoCollection/CorrelationContextManager.ts index 7c4f78f32..67f7fc80f 100644 --- a/AutoCollection/CorrelationContextManager.ts +++ b/AutoCollection/CorrelationContextManager.ts @@ -269,7 +269,7 @@ class CustomPropertiesImpl implements PrivateCustomProperties { public serializeToHeader() { return this.props.map((keyval) => { - `${keyval.key}=${keyval.value}` + return `${keyval.key}=${keyval.value}` }).join(", "); }