Use lower case email address from Gravatars

pull/172/head
M66B 6 years ago
parent 57ba228975
commit ac595df4a6

@ -180,7 +180,7 @@ public class ContactInfo {
if (lookup) { if (lookup) {
HttpURLConnection urlConnection = null; HttpURLConnection urlConnection = null;
try { try {
String hash = Helper.md5(address.getAddress().getBytes()); String hash = Helper.md5(address.getAddress().toLowerCase().getBytes());
URL url = new URL("https://www.gravatar.com/avatar/" + hash + "?d=404"); URL url = new URL("https://www.gravatar.com/avatar/" + hash + "?d=404");
Log.i("Gravatar url=" + url); Log.i("Gravatar url=" + url);

Loading…
Cancel
Save