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
+1 -1
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