Change defaults and modify dumped torrents behavior

This commit is contained in:
Ben Sarmiento
2024-05-26 04:05:25 +02:00
parent 17059e6a4a
commit 4c23402c26
2 changed files with 11 additions and 9 deletions

View File

@@ -138,14 +138,14 @@ func (z *ZurgConfig) GetDownloadsEveryMins() int {
func (z *ZurgConfig) GetDownloadsLimit() int {
if z.DownloadsLimit == 0 {
return 50000
return 10000
}
return z.DownloadsLimit
}
func (z *ZurgConfig) GetDumpTorrentsEveryMins() int {
if z.DumpTorrentsEveryMins == 0 {
return 60
return 1440
}
return z.DumpTorrentsEveryMins
}