This commit is contained in:
Christian Pauly 2020-02-15 10:00:54 +01:00
commit 8ca42ee6e7
3 changed files with 10 additions and 10 deletions

View file

@ -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"),
),
],
),
);