Skip to content

Commit

Permalink
refactor(Draft): Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeWeidmann committed Jan 12, 2023
1 parent 7ae8e60 commit 6c1788d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MailCore/Models/Draft.swift
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ public class Draft: Object, Decodable, Identifiable, Encodable {

public static func mailTo(subject: String?,
body: String?,
to: [Recipient], cc: [Recipient], bcc: [Recipient]) -> Draft {
to: [Recipient],
cc: [Recipient],
bcc: [Recipient]) -> Draft {
return Draft(subject: subject ?? "",
body: body ?? "",
to: to,
Expand Down

0 comments on commit 6c1788d

Please sign in to comment.