1
0
Fork 0
forked from External/mediamtx

fix 'no segments found' error message (#3323)

This commit is contained in:
Alessandro Ros 2024-05-05 11:43:41 +02:00 committed by GitHub
parent 5d0ebdef56
commit 0c86dca71a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,7 +16,7 @@ import (
"github.com/gin-gonic/gin"
)
var errNoSegmentsFound = errors.New("no recording segments found for the given timestamp")
var errNoSegmentsFound = errors.New("no recording segments found")
type serverAuthManager interface {
Authenticate(req *auth.Request) error