Skip to content

Commit 10f4aef

Browse files
committed
chore: correct formatting
1 parent 03fa71e commit 10f4aef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/message.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ pub const Attachment = union(enum) {
257257
try writer.print("Content-Type: {s};\r\n", .{content.content_type});
258258
try writer.writeAll("Content-Transfer-Encoding: base64\r\n");
259259
try writer.writeAll("Content-Disposition: inline;\r\n");
260-
try writer.print("Content-Id: <{s}>\r\n\r\n", .{content.content_id});
260+
try writer.print("Content-Id: {f}\r\n\r\n", .{content.content_id});
261261
try writer.print("{b64}\r\n", .{content.body_contents});
262262
}
263263
},

0 commit comments

Comments
 (0)