RSS fixes (exponential back-off), handling feed errors with retries
This commit is contained in:
@@ -3880,10 +3880,8 @@ namespace aux {
|
||||
feed& f = **i;
|
||||
int delta = f.next_update(now_posix);
|
||||
if (delta <= 0)
|
||||
{
|
||||
f.update_feed();
|
||||
continue;
|
||||
}
|
||||
delta = f.update_feed();
|
||||
TORRENT_ASSERT(delta >= 0);
|
||||
ptime next_update = now + seconds(delta);
|
||||
if (next_update < min_update) min_update = next_update;
|
||||
}
|
||||
|
Reference in New Issue
Block a user