| Summary: | Setting custom update interval for feed doesn't work | ||
|---|---|---|---|
| Product: | [Applications] akregator | Reporter: | Maciej J . Woloszyk <matofesi> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.0-beta8 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Maciej J . Woloszyk
2005-01-27 10:53:32 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. Confirmed. The interval is saved, the checkbox state is not. 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");
|