Change default download timeout from 10 to 15

This commit is contained in:
Ben Adrian Sarmiento
2024-08-26 12:49:30 +02:00
parent 83d928a540
commit d4adc2ae21

View File

@@ -192,7 +192,7 @@ func (z *ZurgConfig) GetApiTimeoutSecs() int {
func (z *ZurgConfig) GetDownloadTimeoutSecs() int {
if z.DownloadTimeoutSecs == 0 {
return 10
return 15
}
return z.DownloadTimeoutSecs
}