1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00

test: add tests for the legacy API

هذا الالتزام موجود في:
Adam Cooke
2024-03-13 18:18:14 +00:00
ملتزم من قبل Adam Cooke
الأصل 1c67f72209
التزام 3d208d632f
6 ملفات معدلة مع 784 إضافات و3 حذوفات

عرض الملف

@@ -99,7 +99,7 @@ class OutgoingMessagePrototype
{
name: attachment[:name],
content_type: attachment[:content_type] || "application/octet-stream",
data: attachment[:base64] ? Base64.decode64(attachment[:data]) : attachment[:data]
data: attachment[:base64] && attachment[:data] ? Base64.decode64(attachment[:data]) : attachment[:data]
}
end
end