summaryrefslogtreecommitdiff
path: root/src/org
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-07 15:04:42 +0300
committerAndrew Dolgov <[email protected]>2011-12-07 15:04:42 +0300
commit175c703650a26057fa58b9ad62e353e23fb82806 (patch)
tree695ed435fa98fe3843bff78eb1305648270e7d56 /src/org
parent0e9b1e76d22e88f77d70ea34068054ca27b557be (diff)
remove periodic downloading articles notifies
Diffstat (limited to 'src/org')
-rw-r--r--src/org/fox/ttrss/OfflineDownloadService.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/org/fox/ttrss/OfflineDownloadService.java b/src/org/fox/ttrss/OfflineDownloadService.java
index 933cc75e..489df927 100644
--- a/src/org/fox/ttrss/OfflineDownloadService.java
+++ b/src/org/fox/ttrss/OfflineDownloadService.java
@@ -140,8 +140,6 @@ public class OfflineDownloadService extends IntentService {
private void downloadArticles() {
Log.d(TAG, "offline: downloading articles... offset=" + m_articleOffset);
- updateNotification(getString(R.string.notify_downloading_articles, m_articleOffset));
-
OfflineArticlesRequest req = new OfflineArticlesRequest(this);
@SuppressWarnings("serial")
@@ -196,6 +194,9 @@ public class OfflineDownloadService extends IntentService {
m_articleOffset = 0;
getWritableDb().execSQL("DELETE FROM articles;");
+
+ updateNotification(R.string.notify_downloading_articles);
+
downloadArticles();
} catch (Exception e) {
e.printStackTrace();