mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove some debug lines
This commit is contained in:
parent
38fed646f5
commit
632d794af5
2 changed files with 0 additions and 2 deletions
|
|
@ -37,7 +37,6 @@ public final class DataService: ObservableObject {
|
|||
} else {
|
||||
persistentContainer.loadPersistentStores { _, error in
|
||||
if let error = error {
|
||||
print("error", error)
|
||||
fatalError("Core Data store failed to load with error: \(error)")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ extension DataService {
|
|||
let maxItemCount = 30
|
||||
let fetchResult = try await fetchLinkedItemIDs(limit: 10, cursor: cursor)
|
||||
let newItemsToFetch = await itemsNotInStore(from: fetchResult.itemIDs)
|
||||
print("newItemsToFetch", newItemsToFetch)
|
||||
let itemsToFetch = previouslyFetchedIDs + newItemsToFetch
|
||||
|
||||
if newItemsToFetch.isEmpty || itemsToFetch.count > maxItemCount || fetchResult.cursor == nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue