Merge branch 'soru/allow-foreign-manual-verify' into 'main'
feat: Allow manual verification of other peoples devices See merge request famedly/fluffychat!374
This commit is contained in:
commit
70541b58ec
1 changed files with 4 additions and 4 deletions
|
|
@ -173,16 +173,16 @@ class _ChatEncryptionSettingsState extends State<ChatEncryptionSettings> {
|
||||||
child: Text(L10n.of(context).verifyStart),
|
child: Text(L10n.of(context).verifyStart),
|
||||||
value: 'verify',
|
value: 'verify',
|
||||||
));
|
));
|
||||||
items.add(PopupMenuItem(
|
|
||||||
child: Text(L10n.of(context).verifyManual),
|
|
||||||
value: 'verify_manual',
|
|
||||||
));
|
|
||||||
} else {
|
} else {
|
||||||
items.add(PopupMenuItem(
|
items.add(PopupMenuItem(
|
||||||
child: Text(L10n.of(context).verifyUser),
|
child: Text(L10n.of(context).verifyUser),
|
||||||
value: 'verify_user',
|
value: 'verify_user',
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
items.add(PopupMenuItem(
|
||||||
|
child: Text(L10n.of(context).verifyManual),
|
||||||
|
value: 'verify_manual',
|
||||||
|
));
|
||||||
}
|
}
|
||||||
if (deviceKeys[i].blocked) {
|
if (deviceKeys[i].blocked) {
|
||||||
items.add(PopupMenuItem(
|
items.add(PopupMenuItem(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue