From 353984353729f8cb06f84f95eb78cc99e49590d8 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Wed, 13 Sep 2023 19:17:53 -0700 Subject: [PATCH] Rename FeedlyIngestStreamArticleIdsOperation to FeedlyIngestStreamArticleIDsOperation. --- .../Operations/FeedlyIngestStreamArticleIdsOperation.swift | 4 ++-- .../Account/Feedly/Operations/FeedlySyncAllOperation.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Account/Sources/Account/Feedly/Operations/FeedlyIngestStreamArticleIdsOperation.swift b/Account/Sources/Account/Feedly/Operations/FeedlyIngestStreamArticleIdsOperation.swift index be47aa5a5..01e4dafdb 100644 --- a/Account/Sources/Account/Feedly/Operations/FeedlyIngestStreamArticleIdsOperation.swift +++ b/Account/Sources/Account/Feedly/Operations/FeedlyIngestStreamArticleIdsOperation.swift @@ -1,5 +1,5 @@ // -// FeedlyIngestStreamArticleIdsOperation.swift +// FeedlyIngestStreamArticleIDsOperation.swift // Account // // Created by Kiel Gillard on 9/1/20. @@ -15,7 +15,7 @@ import Secrets /// Typically, it pages through the article ids of the global.all stream. /// As the article ids are collected, a default read status is created for each. /// So this operation has side effects *for the entire account* it operates on. -class FeedlyIngestStreamArticleIdsOperation: FeedlyOperation, Logging { +class FeedlyIngestStreamArticleIDsOperation: FeedlyOperation, Logging { private let account: Account private let resource: FeedlyResourceID diff --git a/Account/Sources/Account/Feedly/Operations/FeedlySyncAllOperation.swift b/Account/Sources/Account/Feedly/Operations/FeedlySyncAllOperation.swift index bc2aff12b..5ad61e2fc 100644 --- a/Account/Sources/Account/Feedly/Operations/FeedlySyncAllOperation.swift +++ b/Account/Sources/Account/Feedly/Operations/FeedlySyncAllOperation.swift @@ -65,7 +65,7 @@ final class FeedlySyncAllOperation: FeedlyOperation, Logging { createFeedsOperation.addDependency(mirrorCollectionsAsFolders) self.operationQueue.add(createFeedsOperation) - let getAllArticleIds = FeedlyIngestStreamArticleIdsOperation(account: account, userId: feedlyUserId, service: getStreamIdsService) + let getAllArticleIds = FeedlyIngestStreamArticleIDsOperation(account: account, userId: feedlyUserId, service: getStreamIdsService) getAllArticleIds.delegate = self getAllArticleIds.downloadProgress = downloadProgress getAllArticleIds.addDependency(createFeedsOperation)