You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the script is only finding a subset of contacts. For example, if I have a contacts David and Dad, the command contacts da is right now only returning a match for Dad, and ignoring David.
Probably right now around 50% of my contacts aren't finable with the script.
The text was updated successfully, but these errors were encountered:
109try store.enumerateContacts(with: fetchRequest){ contact, stop in110 if contact.emailAddresses.count >0{111 contacts.append(contact)112}113}
It seems like this an e-mail centric app (totally OK, it's your program) but maybe it's worth adding generalizability to searching all contacts by different fields (email, phone, etc?) No worries either way, I just modified this locally (to just append all matching contacts) and rebuilt.
It looks like the script is only finding a subset of contacts. For example, if I have a contacts
David
andDad
, the commandcontacts da
is right now only returning a match forDad
, and ignoringDavid
.Probably right now around 50% of my contacts aren't finable with the script.
The text was updated successfully, but these errors were encountered: