mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add check so that we don't update article statuses for articles that we have pending statuses to send. Issue #1515
This commit is contained in:
@@ -45,7 +45,15 @@ public struct SyncDatabase {
|
||||
public func resetSelectedForProcessing(_ articleIDs: [String]) {
|
||||
syncStatusTable.resetSelectedForProcessing(articleIDs)
|
||||
}
|
||||
|
||||
|
||||
public func selectPendingReadStatusArticleIDs() -> [String] {
|
||||
return syncStatusTable.selectPendingReadStatusArticleIDs()
|
||||
}
|
||||
|
||||
public func selectPendingStarredStatusArticleIDs() -> [String] {
|
||||
return syncStatusTable.selectPendingStarredStatusArticleIDs()
|
||||
}
|
||||
|
||||
public func deleteSelectedForProcessing(_ articleIDs: [String]) {
|
||||
syncStatusTable.deleteSelectedForProcessing(articleIDs)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user