Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Remove useless mailbox property #723

Merged
merged 1 commit into from
May 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions MailCore/Models/Mailbox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public class Mailbox: Object, Codable, Identifiable {
@Persisted public var email: String
@Persisted public var emailIdn: String
@Persisted public var mailbox: String
@Persisted public var realMailbox: String
@Persisted public var linkId: Int
@Persisted public var mailboxId: Int
@Persisted public var hostingId: Int
Expand Down Expand Up @@ -68,7 +67,6 @@ public class Mailbox: Object, Codable, Identifiable {
case email
case emailIdn
case mailbox
case realMailbox
case linkId
case mailboxId
case hostingId
Expand Down Expand Up @@ -114,7 +112,6 @@ public class Mailbox: Object, Codable, Identifiable {
self.email = email
self.emailIdn = emailIdn
self.mailbox = mailbox
self.realMailbox = realMailbox
self.linkId = linkId
self.mailboxId = mailboxId
self.hostingId = hostingId
Expand Down