mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Small improvement
This commit is contained in:
parent
386eea9a99
commit
421a86098f
1 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue