Skip to content

Commit

Permalink
Fix #8 - Do options request to resource path rather than /
Browse files Browse the repository at this point in the history
  • Loading branch information
ciuncan committed Oct 16, 2020
1 parent 447c748 commit 4dae994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ func (c *ConnClient) Options(u *url.URL) (*base.Response, error) {
Scheme: "rtsp",
Host: u.Host,
User: u.User,
Path: "/",
Path: u.Path,
},
})
if err != nil {
Expand Down

0 comments on commit 4dae994

Please # to comment.