We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are clients/servers which set KIND:GROUP instead of KIND:group although RFC 6350 specifies "group" (lower-case) and values are case-sensitive.
KIND:GROUP
KIND:group
For better compatibility, I suggest to make the equals() calls in Kind.is… case-insensitive:
equals()
Kind.is…
ez-vcard/src/main/java/ezvcard/property/Kind.java
Lines 114 to 116 in b8f0a18
The text was updated successfully, but these errors were encountered:
Ignored case on KIND GROUP (#141)
acbeb66
Use case-insensitive comparison for KIND #140
Use case-insensitive comparison for KIND
c2bc93f
#140
Fixed in acbeb66.
Sorry, something went wrong.
ez-vcard version 0.12.1 has been released, which includes this bug fix!
Successfully merging a pull request may close this issue.
There are clients/servers which set
KIND:GROUP
instead ofKIND:group
although RFC 6350 specifies "group" (lower-case) and values are case-sensitive.For better compatibility, I suggest to make the
equals()
calls inKind.is…
case-insensitive:ez-vcard/src/main/java/ezvcard/property/Kind.java
Lines 114 to 116 in b8f0a18
The text was updated successfully, but these errors were encountered: