Small improvement

This commit is contained in:
M66B
2021-07-14 07:24:26 +02:00
parent 386eea9a99
commit 421a86098f

View File

@@ -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();