fixes build error

This commit is contained in:
Stuart Breckenridge
2021-03-24 20:06:48 +08:00
parent 9c761c80df
commit 7f702abc8a
2 changed files with 4 additions and 4 deletions

View File

@@ -53,9 +53,9 @@ public enum AccountType: Int, Codable {
}
public enum FetchType {
case starred(Int?)
case unread(Int?)
case today(Int?)
case starred(_: Int? = nil)
case unread(_: Int? = nil)
case today(_: Int? = nil)
case folder(Folder, Bool)
case webFeed(WebFeed)
case articleIDs(Set<String>)