Change default get downloads value to every 1440 mins (was 60)

This commit is contained in:
Ben Sarmiento
2024-05-27 21:22:18 +02:00
parent 964fdfcbf9
commit 0c64cda1d8
2 changed files with 3 additions and 3 deletions

View File

@@ -131,7 +131,7 @@ func (z *ZurgConfig) GetRepairEveryMins() int {
func (z *ZurgConfig) GetDownloadsEveryMins() int {
if z.DownloadsEveryMins == 0 {
return 60
return 1440
}
return z.DownloadsEveryMins
}