Bug 97986 - Setting custom update interval for feed doesn't work
Summary: Setting custom update interval for feed doesn't work
Status: RESOLVED FIXED
Alias: None
Product: akregator
Classification: Applications
Component: general (show other bugs)
Version: 1.0-beta8
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-27 10:53 UTC by Maciej J . Woloszyk
Modified: 2005-02-18 08:01 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Maciej J . Woloszyk 2005-01-27 10:53:32 UTC
Version:           1.0-beta8 (using KDE 3.3.91 (beta1), Gentoo)
Compiler:          gcc version 3.3.4 20040623 (Gentoo Linux 3.3.4-r1, ssp-3.3.2-2, pie-8.7.6)
OS:                Linux (i686) release 2.6.10-gentoo-r5

I'm not sure if this is related to bug 82002, but when I enable the custom update
interval for a feed and enter some interval and then close dialog and use Edit again I
see that the interval itself is set but the field is greyed-out and the "Use..." marker
is disabled. In consequence custom intervals does not work.
Comment 1 Jeff Balk 2005-02-17 22:42:04 UTC
I have a similar problem with 1.0-beta9. Setting the "custom update interval" as described works for me, but when I exit akregator and start it again, my "custom update interval" settings are lost.
Comment 2 Frank Osterfeld 2005-02-17 23:00:56 UTC
Confirmed. The interval is saved, the checkbox state is not.
Comment 3 Frank Osterfeld 2005-02-18 08:01:24 UTC
CVS commit by osterfeld: 

fix reading of "use custom fetch interval" option
BUG: 97986


  M +1 -1      feed.cpp   1.84


--- kdepim/akregator/src/feed.cpp  #1.83:1.84
@@ -63,5 +63,5 @@ Feed* Feed::fromOPML(QDomElement e)
         QString xmlUrl = e.hasAttribute("xmlUrl") ? e.attribute("xmlUrl") : e.attribute("xmlurl");
 
-        bool useCustomFetchInterval = e.attribute("y") == "true";
+        bool useCustomFetchInterval = e.attribute("autoFetch") == "true";
         
         QString htmlUrl = e.attribute("htmlUrl");