Fixed another problem of symbold downloading.

This commit is contained in:
LevelX2 2017-01-21 01:27:35 +01:00
parent f5b5014b2d
commit cdf05069d2

View file

@ -127,7 +127,7 @@ public class GathererSets implements Iterable<DownloadJob> {
public Iterator<DownloadJob> iterator() {
Calendar c = Calendar.getInstance();
c.setTime(new Date());
c.add(Calendar.DATE, -14);
c.add(Calendar.DATE, +14); // Try to load the symbols eralies 14 days before release date
Date compareDate = c.getTime();
ArrayList<DownloadJob> jobs = new ArrayList<>();
for (String symbol : symbols) {