From 31c528c73fc235f0c7332caa6099759e0162fbb8 Mon Sep 17 00:00:00 2001 From: francescods Date: Mon, 17 Feb 2025 15:50:31 +0100 Subject: [PATCH] modifica commento upstream --- src/main/kotlin/eu/maiora/routes/Auth.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/eu/maiora/routes/Auth.kt b/src/main/kotlin/eu/maiora/routes/Auth.kt index c25ad5f..7b3274c 100644 --- a/src/main/kotlin/eu/maiora/routes/Auth.kt +++ b/src/main/kotlin/eu/maiora/routes/Auth.kt @@ -30,7 +30,7 @@ fun Route.auth(accountsRepository: AccountsRepositoryImpl, parametriRepository: logger.info("param: " + receivedResponse.param); - // Decodifica la stringa da Base64 + // Decodifica la stringa da Base64 a oggetto Credentials val decodedBytes = Base64.getDecoder().decode(receivedResponse.param) val decodedString = String(decodedBytes) val credentials = Json.decodeFromString(decodedString)