more fucking UI fixes
Some checks are pending
CI Pipeline / Run Tests (push) Waiting to run
CI Pipeline / Lint Code (push) Waiting to run
CI Pipeline / Security Scan (push) Waiting to run
CI Pipeline / E2E Tests (push) Blocked by required conditions

This commit is contained in:
Enki 2025-08-27 22:28:16 -07:00
parent 4b3a113fac
commit d259bc3a8e
3 changed files with 2 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

View File

@ -3738,8 +3738,10 @@ func formatUptime(duration time.Duration) string {
// QualitiesHandler returns available quality options for a video file
func (g *Gateway) QualitiesHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("DEBUG: QualitiesHandler called for URL: %s", r.URL.Path)
vars := mux.Vars(r)
fileHash := vars["hash"]
log.Printf("DEBUG: Extracted fileHash: %s", fileHash)
if err := g.validateFileHash(fileHash); err != nil {
g.writeErrorResponse(w, ErrInvalidFileHash, err.Error())

Binary file not shown.