Internal review
This commit is contained in:
parent
aa82cd2064
commit
e2b4899b36
|
@ -39,7 +39,7 @@ internal open class RoomSummaryEntity(@PrimaryKey var roomId: String = "",
|
|||
var hasUnreadMessages: Boolean = false,
|
||||
var tags: RealmList<RoomTagEntity> = RealmList(),
|
||||
var userDrafts: UserDraftsEntity? = null,
|
||||
var breadcrumbsIndex: Int = NOT_IN_BREADCRUMBS
|
||||
var breadcrumbsIndex: Int = NOT_IN_BREADCRUMBS,
|
||||
var canonicalAlias: String? = null,
|
||||
var aliases: RealmList<String> = RealmList(),
|
||||
var flatAliases: String = ""
|
||||
|
|
|
@ -20,7 +20,7 @@ import com.squareup.moshi.Json
|
|||
import com.squareup.moshi.JsonClass
|
||||
|
||||
@JsonClass(generateAdapter = true)
|
||||
data class RoomAliasDescription(
|
||||
internal data class RoomAliasDescription(
|
||||
/**
|
||||
* The room ID for this alias.
|
||||
*/
|
||||
|
|
|
@ -1800,6 +1800,5 @@ Not all features in Riot are implemented in RiotX yet. Main missing (and coming
|
|||
<string name="permissions_rationale_msg_keys_backup_export">Riot needs permission to save your E2E keys on disk.\n\nPlease allow access on the next pop-up to be able to export your keys manually.</string>
|
||||
|
||||
<string name="no_network_indicator">There is no network connection right now</string>
|
||||
<string name="permalink_malformed">Your matrix.to link was malformed</string>
|
||||
|
||||
</resources>
|
||||
|
|
|
@ -161,4 +161,5 @@
|
|||
<string name="soft_logout_clear_data_dialog_submit">Clear data</string>
|
||||
<string name="soft_logout_sso_not_same_user_error">The current session is for user %1$s and you provide credentials for user %2$s. This is not supported by RiotX.\nPlease first clear data, then sign in again on another account.</string>
|
||||
|
||||
<string name="permalink_malformed">Your matrix.to link was malformed</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in New Issue