Merge branch 'soru/better-key-sharing' into 'master'

Ignore key sharing requests by others than us

See merge request ChristianPauly/fluffychat-flutter!83
This commit is contained in:
Christian Pauly 2020-06-24 19:23:13 +00:00
commit a56a455e6b
1 changed files with 3 additions and 0 deletions

View File

@ -170,6 +170,9 @@ class MatrixState extends State<Matrix> {
onRoomKeyRequestSub ??=
client.onRoomKeyRequest.stream.listen((RoomKeyRequest request) async {
final room = request.room;
if (request.sender != room.client.userID) {
return; // ignore share requests by others
}
final sender = room.getUserByMXIDSync(request.sender);
if (await SimpleDialogs(context).askConfirmation(
titleText: L10n.of(context).requestToReadOlderMessages,