mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-26 08:44:13 +01:00
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) {
|
||||
open();
|
||||
Cursor c = db
|
||||
.query(CREATE_TABLE_SIMPLECHAPTERS, null, KEY_ID + "=?",
|
||||
.query(TABLE_NAME_SIMPLECHAPTERS, null, KEY_ID + "=?",
|
||||
new String[] { String.valueOf(item.getId()) }, null,
|
||||
null, null);
|
||||
return c;
|
||||
|
Loading…
Reference in New Issue
Block a user