mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 14:11:00 +00:00
M-net update limited by port number
This commit is contained in:
parent
37c2638c52
commit
009dea4a6b
1 changed files with 2 additions and 2 deletions
|
@ -529,8 +529,8 @@ public abstract class DB extends RoomDatabase {
|
|||
"account",
|
||||
SQLiteDatabase.CONFLICT_ABORT,
|
||||
cv,
|
||||
"host = ?",
|
||||
new Object[]{"mail.m-online.net"});
|
||||
"host = ? AND (port = ? OR port = ?)",
|
||||
new Object[]{"mail.m-online.net", 143, 993});
|
||||
if (rows > 0)
|
||||
EntityLog.log(context, "M-net updated");
|
||||
} catch (Throwable ex) {
|
||||
|
|
Loading…
Reference in a new issue