summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-06 21:16:54 +0300
committerAndrew Dolgov <[email protected]>2011-12-06 21:16:54 +0300
commitc6cec83803313d153ab35280afceea47b9963be8 (patch)
tree1da1fdc924f2cbf10ea5b0da7e788b8c3fc9b351 /src
parentf031194f30d04b186246a29cef73ea1fa566ac0a (diff)
fix offline download limit, bump version
Diffstat (limited to 'src')
-rw-r--r--src/org/fox/ttrss/OfflineDownloadService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/fox/ttrss/OfflineDownloadService.java b/src/org/fox/ttrss/OfflineDownloadService.java
index e770bad6..371b4a4f 100644
--- a/src/org/fox/ttrss/OfflineDownloadService.java
+++ b/src/org/fox/ttrss/OfflineDownloadService.java
@@ -31,7 +31,7 @@ public class OfflineDownloadService extends IntentService {
public static final int NOTIFY_DOWNLOADING = 1;
private static final int OFFLINE_SYNC_SEQ = 60;
- private static final int OFFLINE_SYNC_MAX = 60; //500
+ private static final int OFFLINE_SYNC_MAX = 500;
private SQLiteDatabase m_writableDb;
private SQLiteDatabase m_readableDb;