Show keywords

This commit is contained in:
M66B
2018-11-25 18:29:11 +01:00
parent 8073c089b7
commit 4beb4eb8d0
5 changed files with 38 additions and 7 deletions

View File

@@ -186,7 +186,7 @@ public abstract class DB extends RoomDatabase {
if (value == null)
return new String[0];
else
return TextUtils.split(" ", value);
return TextUtils.split(value, " ");
}
@TypeConverter