Fix formatting and improve comment.

This commit is contained in:
Benoit Marty 2024-08-12 14:55:12 +02:00
parent 683f26c051
commit 01ece74343

View file

@ -70,7 +70,8 @@ class RustMatrixAuthenticationService @Inject constructor(
// Passphrase which will be used for new sessions. Existing sessions will use the passphrase
// stored in the SessionData.
private val pendingPassphrase = getDatabasePassphrase()
// Need to keep a copy of the current session path to delete it.
// Need to keep a copy of the current session path to eventually delete it.
// Ideally it would be possible to get the sessionPath from the Client to avoid doing this.
private var sessionPath: File? = null
private var currentClient: Client? = null