Skip to content

Commit

Permalink
Merge pull request #387 from sgithuku/patch-1
Browse files Browse the repository at this point in the history
Fix for null birthdays on android
  • Loading branch information
morenoh149 authored May 11, 2019
2 parents 2fb0eba + f6982ba commit f2b2cd8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ public WritableArray getContacts() {
+ ContactsContract.Data.MIMETYPE + "=? OR "
+ ContactsContract.Data.MIMETYPE + "=? OR "
+ ContactsContract.Data.MIMETYPE + "=? OR "
+ ContactsContract.Data.MIMETYPE + "=? OR "
+ ContactsContract.Data.MIMETYPE + "=?",
new String[]{
Email.CONTENT_ITEM_TYPE,
Expand All @@ -210,6 +211,7 @@ public WritableArray getContacts() {
StructuredPostal.CONTENT_ITEM_TYPE,
Note.CONTENT_ITEM_TYPE,
Website.CONTENT_ITEM_TYPE,
Event.CONTENT_ITEM_TYPE,
},
null
);
Expand Down

0 comments on commit f2b2cd8

Please sign in to comment.