Don't sanitize lt and gt from SD prompts

31dbb5144eb8c6843a118db07c29f813ea4aaa82

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/extensions/stable-diffusion/index.js+1 -1
@@ -2187,7 +2187,7 @@ function processReply(str) {
21872187 str = str.replaceAll('“', '');
21882188 str = str.replaceAll('.', ',');
21892189 str = str.replaceAll('\n', ', ');
21902190 str = str.replace(/[^a-zA-Z0-9,:_(){}<>[\]\-']+/g, ' ');
21912191 str = str.replace(/\s+/g, ' '); // Collapse multiple whitespaces into one
21922192 str = str.trim();
21932193