feat(server): create M3Us from shares (#3652)

This commit is contained in:
Deluan Quintão 2025-01-16 22:26:16 -03:00 committed by GitHub
parent 9d86f63f15
commit c37583fa9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 45 additions and 0 deletions

View file

@ -56,6 +56,7 @@ func (pub *Router) routes() http.Handler {
if conf.Server.EnableDownloads {
r.HandleFunc("/d/{id}", pub.handleDownloads)
}
r.HandleFunc("/{id}/m3u", pub.handleM3U)
r.HandleFunc("/{id}", pub.handleShares)
r.HandleFunc("/", pub.handleShares)
r.Handle("/*", pub.assetsHandler)