mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 16:13:42 +02:00
Allow ignoring invited users that have not joined a room yet
This commit is contained in:
@@ -629,7 +629,7 @@
|
||||
}
|
||||
|
||||
// Check whether the option Ignore may be presented
|
||||
if (RiotSettings.shared.roomMemberScreenShowIgnore && self.mxRoomMember.membership == MXMembershipJoin)
|
||||
if (RiotSettings.shared.roomMemberScreenShowIgnore)
|
||||
{
|
||||
// is he already ignored ?
|
||||
if (![self.mainSession isUserIgnored:self.mxRoomMember.userId])
|
||||
@@ -778,7 +778,7 @@
|
||||
title = [VectorL10n roomParticipantsActionUnban];
|
||||
break;
|
||||
case MXKRoomMemberDetailsActionIgnore:
|
||||
title = [VectorL10n roomParticipantsActionIgnore];
|
||||
title = [VectorL10n ignoreUser];
|
||||
break;
|
||||
case MXKRoomMemberDetailsActionUnignore:
|
||||
title = [VectorL10n roomParticipantsActionUnignore];
|
||||
|
||||
Reference in New Issue
Block a user