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

Ignore key sharing requests by others than us

See merge request ChristianPauly/fluffychat-flutter!83
onboarding
Christian Pauly 5 years ago
commit 7f2d170815

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

Loading…
Cancel
Save