fix for image url replacement

frdel committed Jul 30, 2025 at 09:11 UTC 3d93dbc5750fe8ba612ccf40a202af033f403304
1 file changed +1 -1
webui/js/messages.js
+1 -1
@@ -769,7 +769,7 @@ function convertHTML(str) {
769 }
770
771 function convertImgFilePaths(str) {
772 - return str.replace("img://", "/image_get?path=");
772 + return str.replace(/img:\/\//g, "/image_get?path=");
773 }
774
775 export function convertIcons(str) {