Image Generation: Don't replace dots with commas

fe33519422c8a62cd73aad33ec5473fe07314597

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

1 files changed, +1 -2Ignore whitespace
public/scripts/extensions/stable-diffusion/index.js+1 -2
@@ -2208,10 +2208,9 @@ function processReply(str) {
22082208
22092209 str = str.replaceAll('"', '');
22102210 str = str.replaceAll('“', '');
2211- str = str.replaceAll('.', ',');
22122211 str = str.replaceAll('\n', ', ');
22132212 str = str.normalize('NFD');
22142213 str = str.replace(/[^a-zA-Z0-9\.,:_(){}<>[\]\-']+/g, ' ');
22152214 str = str.replace(/\s+/g, ' '); // Collapse multiple whitespaces into one
22162215 str = str.trim();
22172216