summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-26 22:54:07 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-26 22:54:07 +0200
commit18992e4b3781a0d76f247976d94a2f7b8ce7240d (patch)
treed0699ec5fa4088a5ec45829a0837edb1f8b08bcc
parentc3509b1b92281dc6840052ea5cdf2b4ae1984a49 (diff)
downloadAntennaPod-18992e4b3781a0d76f247976d94a2f7b8ce7240d.zip
Method in DB was using the wrong constant
-rw-r--r--src/de/podfetcher/storage/PodDBAdapter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/podfetcher/storage/PodDBAdapter.java b/src/de/podfetcher/storage/PodDBAdapter.java
index 219e48c54..47cde72c2 100644
--- a/src/de/podfetcher/storage/PodDBAdapter.java
+++ b/src/de/podfetcher/storage/PodDBAdapter.java
@@ -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;