summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-02-13 08:28:09 +0300
committerAndrew Dolgov <[email protected]>2015-02-13 08:28:09 +0300
commit79afbaff3adffe94c06f821f4d4c8a837ef0e7fc (patch)
tree25f961a015dc50758ec7a136d09eaa3b4361ffa4 /org.fox.ttrss/src/main
parenta77e94c6287ab2f9d985783e94b6a22facce3a68 (diff)
widget: use correct fresh feed id
Diffstat (limited to 'org.fox.ttrss/src/main')
-rw-r--r--org.fox.ttrss/src/main/java/org/fox/ttrss/widget/WidgetUpdateService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.fox.ttrss/src/main/java/org/fox/ttrss/widget/WidgetUpdateService.java b/org.fox.ttrss/src/main/java/org/fox/ttrss/widget/WidgetUpdateService.java
index 9c49ea2d..1169cdb3 100644
--- a/org.fox.ttrss/src/main/java/org/fox/ttrss/widget/WidgetUpdateService.java
+++ b/org.fox.ttrss/src/main/java/org/fox/ttrss/widget/WidgetUpdateService.java
@@ -63,7 +63,7 @@ public class WidgetUpdateService extends Service {
} else {
- final int feedId = m_prefs.getBoolean("widget_show_fresh", true) ? -6 : 0;
+ final int feedId = m_prefs.getBoolean("widget_show_fresh", true) ? -3 : 0;
SimpleLoginManager loginManager = new SimpleLoginManager() {