Skip to content

Commit 9458ce1

Browse files
authored
Clay/htmlEncode: fix ' and " being backwards (#2485)
" '
1 parent 3cbbe35 commit 9458ce1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/Clay/htmlEncode.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
case "&":
3838
return "&";
3939
case '"':
40-
return "'";
41-
case "'":
4240
return """;
41+
case "'":
42+
return "'";
4343
case ">":
4444
return ">";
4545
case "<":

0 commit comments

Comments
 (0)