Prevent crash

This commit is contained in:
M66B 2022-12-11 09:17:21 +01:00
parent 4739ff6977
commit d39392126f
1 changed files with 2 additions and 0 deletions

View File

@ -464,6 +464,8 @@ public class InvalidationTracker {
final int tableId = cursor.getInt(0);
invalidatedTableIds.add(tableId);
}
} catch (Throwable ex) {
eu.faircode.email.Log.w(ex);
} finally {
cursor.close();
}