mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-14 15:53:36 +01:00
incorrectly set quick query value during recheck - see issue #523
This commit is contained in:
@@ -272,8 +272,8 @@ public final class Downloader {
|
||||
}
|
||||
try {
|
||||
//retry
|
||||
if (!isRetry && !Settings.getBoolean(Settings.KEYS.DOWNLOADER_QUICK_QUERY_TIMESTAMP)) {
|
||||
Settings.setBoolean(Settings.KEYS.DOWNLOADER_QUICK_QUERY_TIMESTAMP, true);
|
||||
if (!isRetry && Settings.getBoolean(Settings.KEYS.DOWNLOADER_QUICK_QUERY_TIMESTAMP)) {
|
||||
Settings.setBoolean(Settings.KEYS.DOWNLOADER_QUICK_QUERY_TIMESTAMP, false);
|
||||
return getLastModified(url, true);
|
||||
}
|
||||
} catch (InvalidSettingException ex1) {
|
||||
|
||||
Reference in New Issue
Block a user