mirror of https://github.com/M66B/FairEmail.git
Prevent using Doodles
This commit is contained in:
parent
db32b16a3a
commit
913db34185
|
@ -349,8 +349,10 @@ public class ContactInfo {
|
||||||
String domain = (at < 0 ? null : info.email.substring(at + 1).toLowerCase(Locale.ROOT));
|
String domain = (at < 0 ? null : info.email.substring(at + 1).toLowerCase(Locale.ROOT));
|
||||||
|
|
||||||
if (domain != null) {
|
if (domain != null) {
|
||||||
if ("gmail.com".equals(domain) || "googlemail.com".equals(domain))
|
if ("google.com".equals(domain) ||
|
||||||
domain = "google.com";
|
"gmail.com".equals(domain) ||
|
||||||
|
"googlemail.com".equals(domain))
|
||||||
|
domain = "support.google.com";
|
||||||
|
|
||||||
File dir = new File(context.getCacheDir(), "favicons");
|
File dir = new File(context.getCacheDir(), "favicons");
|
||||||
if (!dir.exists())
|
if (!dir.exists())
|
||||||
|
|
Loading…
Reference in New Issue