fix for image url replacement
frdel committed
Jul 30, 2025 at 09:11 UTC
fbd224154849be9478c3a314058a0a75936ca21a
1 file changed
+1
-1
webui/js/messages.js
+1
-1
@@ -773,7 +773,7 @@ function convertHTML(str) {
773
}
774
775
function convertImgFilePaths(str) {
776
- return str.replace("img://", "/image_get?path=");
776
+ return str.replace(/img:\/\//g, "/image_get?path=");
777
}
778
779
export function convertIcons(str) {