Small improvement

pull/199/head
M66B 4 years ago
parent 386eea9a99
commit 421a86098f

@ -408,7 +408,11 @@ public class ContactInfo {
break;
case "l": {
URL url = new URL(kv[1].trim());
String svg = kv[1].trim();
if (TextUtils.isEmpty(svg))
continue;
URL url = new URL(svg);
Log.i("BIMI favicon " + url);
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();

Loading…
Cancel
Save