Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 437ae19d authored by Manjeet Rulhania's avatar Manjeet Rulhania Committed by Android (Google) Code Review
Browse files

Merge "Handle sqlite failure when inserting discrete ops" into main

parents a19ea443 e07c649e
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -110,7 +110,12 @@ class DiscreteOpsDbHelper extends SQLiteOpenHelper {
            }
            db.setTransactionSuccessful();
        } finally {
            try {
                db.endTransaction();
            } catch (SQLiteException exception) {
                Slog.e(LOG_TAG, "Couldn't commit transaction when inserting discrete ops, database"
                        + " file size (bytes) : " + getDatabaseFile().length(), exception);
            }
        }
    }