Skip to content

Commit

Permalink
Merge pull request #3150 from threefoldtech/development_discourse_tls
Browse files Browse the repository at this point in the history
Fix discourse TLS switch
  • Loading branch information
samaradel authored Jul 28, 2024
2 parents c89c34a + 47e0dd1 commit 3bd7868
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 3bd7868

Please sign in to comment.