Skip to content

Commit

Permalink
fix: decode the password correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
abdallahmehiz committed Dec 17, 2024
1 parent fad6a5a commit 67214fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ kotlin {
}
}

val appVersionName = "0.1.5"
val appVersionCode = 10
val appVersionName = "0.1.6"
val appVersionCode = 11
val appPackageName = "mehiz.abdallah.progres"

android {
Expand Down
3 changes: 0 additions & 3 deletions composeApp/src/androidMain/kotlin/utils/AuthRefreshWorker.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ import kotlinx.datetime.TimeZone
import kotlinx.datetime.toLocalDateTime
import mehiz.abdallah.progres.core.TAG
import mehiz.abdallah.progres.domain.UserAuthUseCase
import kotlin.io.encoding.Base64
import kotlin.io.encoding.ExperimentalEncodingApi

class AuthRefreshWorker(
appContext: Context,
workerParams: WorkerParameters,
private val authUseCase: UserAuthUseCase,
) : CoroutineWorker(appContext, workerParams) {

@OptIn(ExperimentalEncodingApi::class)
override suspend fun doWork(): Result {
Log.d(TAG, "Token refresh worker started")
val timeZone = TimeZone.currentSystemDefault()
Expand Down

0 comments on commit 67214fd

Please sign in to comment.