Skip to content

Commit

Permalink
amend
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxx committed Jun 29, 2023
1 parent 25fca60 commit 472bc38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ovenmedia/recording.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ func (o *ovenMedia) StartRecording(url string, vHost string, appName string, bod

//

func (o *ovenMedia) StopRecording(vHost string, appName string, body RequestRecordingStop) (*ResponseRecordingStart, error) {
func (o *ovenMedia) StopRecording(url string, vHost string, appName string, body RequestRecordingStop) (*ResponseRecordingStart, error) {
//
resp, err := o.post(GET_VHOSTS_STOP_RECORDED_BY_NAME(vHost, appName), body)
resp, err := o.post(url+GET_VHOSTS_START_RECORDED_BY_NAME(vHost, appName), body)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 472bc38

Please sign in to comment.