Skip to content

Commit 010b0f2

Browse files
committed
Fix messages ordering, need to fix complete tasks showing
1 parent b8a3e75 commit 010b0f2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

composeApp/src/commonMain/kotlin/io/middlepoint/morestuff/shared/data/sync/DataSyncManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class DataSyncManagerImpl(
134134
}
135135

136136
data.maxUpdatedAt()?.let {
137-
logger.d { "new lastPullTime: $it" }
137+
logger.d { "new lastPushTime: $it" }
138138
lastPushTime = it
139139
}
140140

composeApp/src/nonWebMain/kotlin/io/middlepoint/morestuff/shared/platform/Platform.nonWeb.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.sentry.kotlin.multiplatform.Sentry
55
actual fun initializeSentry() {
66
Sentry.init { options ->
77
options.dsn = "https://bc0a969f01468e75bd5473e27a205277@o4509511098040320.ingest.de.sentry.io/4509511355531344"
8-
options.debug = true
8+
options.debug = false
99
}
1010
}
1111

0 commit comments

Comments
 (0)