- Rewrite arr storage to fix issues with repair
- Fix issues with restarts taking longer than expected
- Add bw_limit to rclone config
- Add support for skipping multi-season
- Other minor bug fixes
This commit is contained in:
Mukhtar Akere
2025-10-13 17:02:50 +01:00
parent ab485adfc8
commit 726f97e13c
17 changed files with 252 additions and 193 deletions

View File

@@ -61,6 +61,7 @@ type Web struct {
cookie *sessions.CookieStore
templates *template.Template
torrents *wire.TorrentStorage
urlBase string
}
func New() *Web {
@@ -87,5 +88,6 @@ func New() *Web {
templates: templates,
cookie: cookieStore,
torrents: wire.Get().Torrents(),
urlBase: cfg.URLBase,
}
}