mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Disable share downloading when EnableDownloads
is false.
Fixes https://github.com/navidrome/navidrome/pull/2246#issuecomment-1472341635
This commit is contained in:
parent
23c483da10
commit
377e7ebd52
5 changed files with 19 additions and 14 deletions
|
@ -52,7 +52,9 @@ func (p *Router) routes() http.Handler {
|
|||
})
|
||||
if conf.Server.EnableSharing {
|
||||
r.HandleFunc("/s/{id}", p.handleStream)
|
||||
r.HandleFunc("/d/{id}", p.handleDownloads)
|
||||
if conf.Server.EnableDownloads {
|
||||
r.HandleFunc("/d/{id}", p.handleDownloads)
|
||||
}
|
||||
r.HandleFunc("/{id}", p.handleShares)
|
||||
r.HandleFunc("/", p.handleShares)
|
||||
r.Handle("/*", p.assetsHandler)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue