Method in DB was using the wrong constant
This commit is contained in:
parent
c3509b1b92
commit
18992e4b37
|
@ -472,7 +472,7 @@ public class PodDBAdapter {
|
||||||
public final Cursor getSimpleChaptersOfFeedItemCursor(final FeedItem item) {
|
public final Cursor getSimpleChaptersOfFeedItemCursor(final FeedItem item) {
|
||||||
open();
|
open();
|
||||||
Cursor c = db
|
Cursor c = db
|
||||||
.query(CREATE_TABLE_SIMPLECHAPTERS, null, KEY_ID + "=?",
|
.query(TABLE_NAME_SIMPLECHAPTERS, null, KEY_ID + "=?",
|
||||||
new String[] { String.valueOf(item.getId()) }, null,
|
new String[] { String.valueOf(item.getId()) }, null,
|
||||||
null, null);
|
null, null);
|
||||||
return c;
|
return c;
|
||||||
|
|
Loading…
Reference in New Issue