Prevent crash

This commit is contained in:
M66B
2018-12-24 10:51:32 +00:00
parent 9770fe009a
commit 84d09a381c
5 changed files with 5 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ public abstract class DB extends RoomDatabase {
Cursor cursor = null;
try {
cursor = db.query(command, new Object[0]);
if (cursor.moveToNext())
if (cursor != null && cursor.moveToNext())
return cursor.getString(0);
else
return null;