We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c714d5b commit 9f2fe33Copy full SHA for 9f2fe33
app/src/main/kotlin/at/bitfire/davdroid/sync/CalendarSyncer.kt
@@ -101,6 +101,5 @@ class CalendarSyncer @Inject constructor(
101
syncManager.performSync()
102
}
103
104
-
105
106
app/src/main/kotlin/at/bitfire/davdroid/sync/Syncer.kt
@@ -121,6 +121,10 @@ abstract class Syncer(
121
} finally {
122
if (httpClient.isInitialized())
123
httpClient.value.close()
124
+
125
+ // close content provider client which is acquired above
126
+ provider.close()
127
128
Logger.log.log(
129
Level.INFO,
130
"$contentAuthority sync of $account finished",
0 commit comments