mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-26 04:52:00 -08:00
fix compilation
This commit is contained in:
parent
0c1b13fa82
commit
19bb58404f
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ func (pconf *PathConf) fillAndCheck(name string) error {
|
|||
return fmt.Errorf("source redirect must be filled")
|
||||
}
|
||||
|
||||
_, err := url.Parse(pconf.SourceRedirect)
|
||||
u, err := url.Parse(pconf.SourceRedirect)
|
||||
if err != nil {
|
||||
return fmt.Errorf("'%s' is not a valid rtsp url", pconf.SourceRedirect)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue