Skip to content

Commit 8d1de51

Browse files
committed
Add missing colon
1 parent e0651b7 commit 8d1de51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shared/AppInsightsCore/src/utils/EnvUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ export function fieldRedaction(input: string, config: IConfiguration): string {
545545
if (!input || !isString(input) || strIndexOf(input, " ") !== -1) {
546546
return input;
547547
}
548-
const isRedactionDisabled = config && config.redactUrls === false
548+
const isRedactionDisabled = config && config.redactUrls === false;
549549
const isQueryParamRedactionDisabled = config && config.redactQueryParams === false;
550550
if (isRedactionDisabled && isQueryParamRedactionDisabled) {
551551
return input;

0 commit comments

Comments
 (0)