mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Request sync objects for all folders on iOS
This commit is contained in:
parent
d3b5282940
commit
897f55c0f7
1 changed files with 5 additions and 2 deletions
|
|
@ -71,13 +71,16 @@ extension DataService {
|
|||
)
|
||||
}
|
||||
|
||||
let sort = InputObjects.SortParams(by: .updatedTime,
|
||||
order: OptionalArgument(descending ? .descending : .ascending))
|
||||
let sort = InputObjects.SortParams(
|
||||
by: .updatedTime,
|
||||
order: OptionalArgument(descending ? .descending : .ascending)
|
||||
)
|
||||
|
||||
let query = Selection.Query {
|
||||
try $0.updatesSince(
|
||||
after: OptionalArgument(cursor),
|
||||
first: OptionalArgument(limit),
|
||||
folder: OptionalArgument("all"),
|
||||
since: DateTime(from: since),
|
||||
sort: OptionalArgument(sort),
|
||||
selection: selection
|
||||
|
|
|
|||
Loading…
Reference in a new issue