This commit is contained in:
valere 2023-02-06 09:24:56 +01:00
parent 604c3932cd
commit c0fb4e88cd
4 changed files with 4 additions and 4 deletions

View file

@ -53,7 +53,7 @@ data class OlmDecryptionResult(
@Json(name = "key_safety") val isSafe: Boolean? = null,
/**
* Authenticity info for that message
* Authenticity info for that message.
*/
@Json(name = "verification_state") val verificationState: MessageVerificationState? = null,
)

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 New Vector Ltd
* Copyright (c) 2023 The Matrix.org Foundation C.I.C.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View file

@ -23,7 +23,7 @@ import org.matrix.android.sdk.internal.crypto.store.db.model.CryptoRoomEntityFie
import org.matrix.android.sdk.internal.util.database.RealmMigrator
/**
* This migration stores the rotation parameters for megolm oubound sessions
* This migration stores the rotation parameters for megolm oubound sessions.
*/
internal class MigrateCryptoTo021(realm: DynamicRealm) : RealmMigrator(realm, 21) {

View file

@ -61,7 +61,7 @@ class SelfVerificationController @Inject constructor(
fun confirmCancelRequest(confirm: Boolean)
/**
* An incoming request, when I am the verified request
* An incoming request, when I am the verified request.
*/
fun wasNotMe()
}