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

Commit 42559630 authored by George Mount's avatar George Mount Committed by Android (Google) Code Review
Browse files

Merge "Fix "drop table" problem." into gb-ub-photos-bryce

parents dc798933 fcdcdd76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ public class PhotoDatabase extends SQLiteOpenHelper {
    protected static void dropTable(SQLiteDatabase db, String table) {
        db.beginTransaction();
        try {
            db.execSQL("drop table " + table);
            db.execSQL("drop table if exists " + table);
            db.setTransactionSuccessful();
        } finally {
            db.endTransaction();