From 7f702abc8a05c06ba79aa0948ade296eb5cdac97 Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Wed, 24 Mar 2021 20:06:48 +0800 Subject: [PATCH] fixes build error --- Account/Sources/Account/Account.swift | 6 +++--- iOS/MasterFeed/MasterFeedViewController.swift | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Account/Sources/Account/Account.swift b/Account/Sources/Account/Account.swift index 6b0cd940c..d82023c69 100644 --- a/Account/Sources/Account/Account.swift +++ b/Account/Sources/Account/Account.swift @@ -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) diff --git a/iOS/MasterFeed/MasterFeedViewController.swift b/iOS/MasterFeed/MasterFeedViewController.swift index c2f719e6e..ee332f0a0 100644 --- a/iOS/MasterFeed/MasterFeedViewController.swift +++ b/iOS/MasterFeed/MasterFeedViewController.swift @@ -1235,7 +1235,7 @@ private extension MasterFeedViewController { let title = NSString.localizedStringWithFormat(localizedMenuText as NSString, account.nameForDisplay) as String let action = UIAction(title: title, image: AppAssets.markAllAsReadImage) { [weak self] action in MarkAsReadAlertController.confirm(self, coordinator: self?.coordinator, confirmTitle: title, sourceType: contentView) { [weak self] in - if let articles = try? account.fetchArticles(.unread) { + if let articles = try? account.fetchArticles(.unread()) { self?.coordinator.markAllAsRead(Array(articles)) } }