Forgot to pass argument in single place

pull/214/head
James Luck 2 years ago
parent d9925a3cf6
commit a000d19d02

@ -628,7 +628,9 @@ func UpdateSetting(c *gin.Context) {
err = service.UpdateSettings(model.DownloadOnAdd, model.InitialDownloadCount,
model.AutoDownload, model.AppendDateToFileName, model.AppendEpisodeNumberToFileName,
model.DarkMode, model.DownloadEpisodeImages, model.GenerateNFOFile, model.DontDownloadDeletedFromDisk, model.BaseUrl)
model.DarkMode, model.DownloadEpisodeImages, model.GenerateNFOFile, model.DontDownloadDeletedFromDisk, model.BaseUrl,
model.MaxDownloadConcurrency
)
if err == nil {
c.JSON(200, gin.H{"message": "Success"})

Loading…
Cancel
Save