Enable libolm
This commit is contained in:
parent
2c2f5408ee
commit
d388d8267c
5 changed files with 108 additions and 4 deletions
|
|
@ -84,9 +84,18 @@ class _ChatEncryptionSettingsState extends State<ChatEncryptionSettings> {
|
|||
ListTile(
|
||||
trailing: Icon(Icons.info),
|
||||
subtitle: Text(
|
||||
I18n.of(context).needPantalaimonWarning,
|
||||
Matrix.of(context).encryptionEnabled
|
||||
? I18n.of(context).warningEncryptionInBeta
|
||||
: 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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue