Add missing setting on home page

This commit is contained in:
Ben Sarmiento
2024-02-18 23:28:16 +01:00
parent 36298dd979
commit c7356a5b8d

View File

@@ -206,6 +206,10 @@ func (zr *Handlers) handleHome(resp http.ResponseWriter, req *http.Request) {
<td>API Timeout</td> <td>API Timeout</td>
<td>%d secs</td> <td>%d secs</td>
</tr> </tr>
<tr>
<td>Get torrents count</td>
<td>%d at a time</td>
</tr>
<tr> <tr>
<td>Download Timeout</td> <td>Download Timeout</td>
<td>%d secs</td> <td>%d secs</td>
@@ -307,6 +311,7 @@ func (zr *Handlers) handleHome(resp http.ResponseWriter, req *http.Request) {
response.Config.GetRepairEveryMins(), response.Config.GetRepairEveryMins(),
response.Config.ShouldDeleteRarFiles(), response.Config.ShouldDeleteRarFiles(),
response.Config.GetApiTimeoutSecs(), response.Config.GetApiTimeoutSecs(),
response.Config.GetTorrentsCount(),
response.Config.GetDownloadTimeoutSecs(), response.Config.GetDownloadTimeoutSecs(),
response.Config.EnableDownloadMount(), response.Config.EnableDownloadMount(),
response.Config.GetDownloadsEveryMins(), response.Config.GetDownloadsEveryMins(),