Fix olm
This commit is contained in:
parent
d388d8267c
commit
8ca42ee6e7
3 changed files with 10 additions and 10 deletions
|
|
@ -89,13 +89,6 @@ class _ChatEncryptionSettingsState extends State<ChatEncryptionSettings> {
|
|||
: I18n.of(context).needPantalaimonWarning,
|
||||
),
|
||||
),
|
||||
if (room.encrypted)
|
||||
ListTile(
|
||||
title: Text("Outbound MegOlm session ID:"),
|
||||
subtitle: Text(
|
||||
room.outboundGroupSession?.session_id()?.beautified ??
|
||||
"None"),
|
||||
),
|
||||
Divider(height: 1),
|
||||
if (room.encrypted)
|
||||
ListTile(
|
||||
|
|
@ -168,6 +161,13 @@ class _ChatEncryptionSettingsState extends State<ChatEncryptionSettings> {
|
|||
);
|
||||
},
|
||||
),
|
||||
if (room.encrypted)
|
||||
ListTile(
|
||||
title: Text("Outbound MegOlm session ID:"),
|
||||
subtitle: Text(
|
||||
room.outboundGroupSession?.session_id()?.beautified ??
|
||||
"None"),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue