Merge pull request #1662 from fschrempf/fix-task-deletion-query-chunking

Fix chunking of SQLite queries in case of task deletion
pull/1663/head
Alex Baker 3 years ago committed by GitHub
commit d9f58f9832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -93,7 +93,7 @@ abstract class GoogleTaskDao {
abstract suspend fun getChildren(ids: List<Long>): List<Long>
suspend fun hasRecurringParent(ids: List<Long>): List<Long> =
ids.chunkedMap { internalHasRecurringParent(ids) }
ids.chunkedMap { internalHasRecurringParent(it) }
@Query("""
SELECT gt_task

Loading…
Cancel
Save