We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce3786 commit 3f3d93cCopy full SHA for 3f3d93c
1 file changed
core/datastore/src/main/java/com/threegap/bitnagil/datastore/storage/AuthTokenDataStoreImpl.kt
@@ -26,8 +26,8 @@ internal class AuthTokenDataStoreImpl
26
27
override suspend fun updateAccessToken(accessToken: String): AuthToken =
28
runCatching {
29
- dataStore.updateData { authToke ->
30
- authToke.copy(accessToken = accessToken)
+ dataStore.updateData { authToken ->
+ authToken.copy(accessToken = accessToken)
31
}
32
}.fold(
33
onSuccess = { it },
0 commit comments