Disable keep-alive-noop for Outlook again

This commit is contained in:
M66B
2024-10-08 08:48:55 +02:00
parent 67d4dd0212
commit 4620c7e6f9
2 changed files with 2 additions and 6 deletions

View File

@@ -3052,6 +3052,8 @@ public abstract class DB extends RoomDatabase {
logMigration(startVersion, endVersion);
db.execSQL("UPDATE account SET keep_alive_noop = 0" +
" WHERE host = 'imap.gmail.com' AND pop = " + EntityAccount.TYPE_IMAP);
db.execSQL("UPDATE account SET keep_alive_noop = 0" +
" WHERE host = 'outlook.office365.com' AND pop = " + EntityAccount.TYPE_IMAP);
}
}).addMigrations(new Migration(998, 999) {
@Override