From bc41234c9890b9b6ba509c64c4ebbf9f89e4af12 Mon Sep 17 00:00:00 2001 From: Taras Smakula <tarassmakula@gmail.com> Date: Tue, 21 Nov 2023 13:02:31 +0200 Subject: [PATCH] Add clarification comment --- .../futo/circles/auth/feature/token/RefreshTokenDataSource.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/auth/src/main/java/org/futo/circles/auth/feature/token/RefreshTokenDataSource.kt b/auth/src/main/java/org/futo/circles/auth/feature/token/RefreshTokenDataSource.kt index 2e3462013..f6096e20e 100644 --- a/auth/src/main/java/org/futo/circles/auth/feature/token/RefreshTokenDataSource.kt +++ b/auth/src/main/java/org/futo/circles/auth/feature/token/RefreshTokenDataSource.kt @@ -6,6 +6,7 @@ import javax.inject.Inject class RefreshTokenDataSource @Inject constructor() { + // Local sessionId from Session.Params.Credentials.sessionId() suspend fun refreshToken(sessionId: String) = createResult { MatrixInstanceProvider.matrix.authenticationService().refreshToken(sessionId) } -- GitLab