Fix: sidebar drive button resets to root, and use query parameter for downloads to bypass Next.js API rewrite bug with parenthesis in paths
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m23s
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m23s
This commit is contained in:
parent
0bd42e5b47
commit
d982ce66a8
3 changed files with 4 additions and 3 deletions
|
|
@ -205,6 +205,7 @@ func main() {
|
|||
files.Get("/thumbnail/:checksum", fsHandler.ServeThumbnail)
|
||||
files.Get("/download-folder", fsHandler.DownloadFolder)
|
||||
files.Post("/download-bulk", fsHandler.DownloadBulk)
|
||||
files.Get("/download", fsHandler.Download)
|
||||
files.Get("/download/*", fsHandler.Download)
|
||||
files.Post("/zip", archiveHandler.Zip)
|
||||
files.Post("/unzip", archiveHandler.Unzip)
|
||||
|
|
|
|||
Reference in a new issue