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
I just looked into this (better late than never 😄 ) and I'm able to reproduce this. There's an issue over on the Nextcloud contacts app GitHub: nextcloud/contacts#1107 as the export is not following the RFC.
Meanwhile, I added a configuration option to apply the fix you've mentioned upon .vcf import. Will be available in the next release.
Currently, Nextcloud does its .vcf export phone numbers like this example:
TEL;TYPE="WORK,VOICE";VALUE=UNKNOWN:+49123456789
which will not be recognized because of the quotes.
In form1.cs, you could change the line 1426 to
switch (type.Replace("\"", ""))
that would do the job, but maybe there is a better place for doing the replace, so I don't add a pull request.
The text was updated successfully, but these errors were encountered: