mirror of
https://github.com/Qortal/qortal.git
synced 2025-03-14 11:32:32 +00:00
Allow direct connection QDN retries every hour, instead of every 24 hours.
This commit is contained in:
parent
86526507a6
commit
b46c3cf95f
@ -197,8 +197,8 @@ public class ArbitraryDataFileListManager {
|
||||
}
|
||||
}
|
||||
|
||||
if (timeSinceLastAttempt > 24 * 60 * 60 * 1000L) {
|
||||
// We haven't tried for at least 24 hours
|
||||
if (timeSinceLastAttempt > 60 * 60 * 1000L) {
|
||||
// We haven't tried for at least 1 hour
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user