Allow direct connection QDN retries every hour, instead of every 24 hours.

This commit is contained in:
CalDescent 2022-08-13 14:20:10 +01:00
parent 86526507a6
commit b46c3cf95f

View File

@ -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;
}