修复收件内嵌图片只能显示一张

This commit is contained in:
eoao
2025-07-07 22:38:56 +08:00
parent c00a50936b
commit e223df29f0
+2 -2
View File
@@ -113,9 +113,9 @@ function toMessage(message) {
}
function formatImage(content) {
content = content || ''
content = content || '';
const domain = settingStore.settings.r2Domain;
return content.replace('{{domain}}', domain + '/');
return content.replace(/{{domain}}/g, domain + '/');
}
function showImage(key) {