Rename FeedlyIngestStreamArticleIdsOperation to FeedlyIngestStreamArticleIDsOperation.

This commit is contained in:
Brent Simmons
2023-09-13 19:17:53 -07:00
parent 756bf17175
commit 3539843537
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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)