Skip to content

Commit

Permalink
Fix discourse TLS switch
Browse files Browse the repository at this point in the history
  • Loading branch information
samaradel committed Jul 23, 2024
1 parent 0a5568e commit 47e0dd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ if (contract.value.metadata?.includes("fullvm") && contract.value.contractId) ge
function _transform(value: string): any {
const v = value.toLowerCase();
if (v === "true" || v === "false") {
return Boolean(v);
return v === "true";
}
return value;
}
Expand Down

0 comments on commit 47e0dd1

Please sign in to comment.