LoopDBImporter: update table names

This commit is contained in:
2017-07-23 17:25:52 -04:00
parent 5fde0501b5
commit fdcb9daadc

View File

@@ -62,7 +62,7 @@ public class LoopDBImporter extends AbstractImporter
boolean canHandle = true;
Cursor c = db.query("select count(*) from SQLITE_MASTER " +
"where name='Checkmarks' or name='Repetitions'");
"where name='Habits' or name='Repetitions'");
if (!c.moveToNext() || c.getInt(0) != 2)
{