mirror of
https://github.com/Kopano-dev/kopano-ol-extension.git
synced 2023-10-10 13:37:40 +02:00
[KOE-151] Fix for exception in Shared Folder dialog if group is synced as contact
This commit is contained in:
parent
ab9316ea13
commit
ec8ac6de01
@ -52,8 +52,12 @@ namespace Acacia.UI
|
||||
_users = new List<GABUser>();
|
||||
foreach (IItem item in _gab.Contacts.Items.Sort("FullName", false))
|
||||
{
|
||||
if (item is IContactItem)
|
||||
_users.Add(new GABUser((IContactItem)item));
|
||||
IContactItem contact = item as IContactItem;
|
||||
// The check for customer id is to avoid groups created as contacts
|
||||
if (contact != null && contact.CustomerID != null)
|
||||
{
|
||||
_users.Add(new GABUser(contact));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user