Skip to content

Commit

Permalink
Quickfix for type mismatch int -> String
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Moreno committed Sep 6, 2016
1 parent 9964899 commit 0dc717c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private Map<String, Contact> loadContactsFrom(Cursor cursor) {
return map;
}

private String getPhotoURIFromContactURI(String contactURIString, int contactId) {
private String getPhotoURIFromContactURI(String contactURIString, String contactId) {
String photoURI = "";
try {
Uri contactURI = Uri.parse(contactURIString);
Expand Down

0 comments on commit 0dc717c

Please sign in to comment.