mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 14:16:59 +02:00
Feature - "Add contact" button should be added on Room Member list
#905 + Improve the people invite screens #904.
This commit is contained in:
@@ -224,7 +224,7 @@
|
||||
if (identifiers.count)
|
||||
{
|
||||
// Here the contact can only have one identifier
|
||||
[ignoredContactsByMatrixId setObject:contact forKey:identifiers.firstObject];
|
||||
[self.ignoredContactsByMatrixId setObject:contact forKey:identifiers.firstObject];
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -233,7 +233,7 @@
|
||||
{
|
||||
// Here the contact can only have one email
|
||||
MXKEmail *email = emails.firstObject;
|
||||
[ignoredContactsByEmail setObject:contact forKey:email.emailAddress];
|
||||
[self.ignoredContactsByEmail setObject:contact forKey:email.emailAddress];
|
||||
}
|
||||
}
|
||||
isMultiUseNameByDisplayName[contact.displayName] = (isMultiUseNameByDisplayName[contact.displayName] ? @(YES) : @(NO));
|
||||
@@ -241,7 +241,7 @@
|
||||
|
||||
if (userContact)
|
||||
{
|
||||
[ignoredContactsByMatrixId setObject:userContact forKey:self.mainSession.myUser.userId];
|
||||
[self.ignoredContactsByMatrixId setObject:userContact forKey:self.mainSession.myUser.userId];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user