Skip to content

Commit

Permalink
remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Jul 8, 2024
1 parent 8d1b2c4 commit dcb13d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radarr/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (r *Radarr) SearchReleaseContext(ctx context.Context, movieID int64) ([]*Re
// GrabRelease attempts to download a release for a movie from a search.
// Pass the release for the item from the SearchRelease output, and the movie ID you want the grab associated with.
// If the movieID is 0 then the MappedMovieID in the release is used, but that is not always set.
func (r *Radarr) GrabRelease(release *Release, movieID int64) (*Release, error) {
func (r *Radarr) GrabRelease(release *Release) (*Release, error) {
return r.GrabReleaseContext(context.Background(), release)
}

Expand Down

0 comments on commit dcb13d4

Please sign in to comment.