Skip to content

Commit

Permalink
comment updates
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Jul 8, 2024
1 parent bbc6e9e commit e6be35d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion radarr/calendar.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (r *Radarr) GetCalendarID(calendarID int64) (*Movie, error) {
func (r *Radarr) GetCalendarIDContext(ctx context.Context, calendarID int64) (*Movie, error) {
var output *Movie
req := starr.Request{URI: path.Join(bpCalendar, starr.Itoa(calendarID))}
req := starr.Request{URI: path.Join(bpCalendar, starr.Str(calendarID))}
if err := r.GetInto(ctx, req, &output); err != nil {
return nil, fmt.Errorf("api.Get(%s): %w", &req, err)
}
Expand Down
2 changes: 1 addition & 1 deletion shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const (
)

// BulkIndexer is the input to UpdateIndexers on all apps except Prowlarr.
// Use the starr.True/False/Int64() funcs to create the pointers.
// Use the starr.True/False/Ptr() funcs to create the pointers.
type BulkIndexer struct {
IDs []int64 `json:"ids"`
Tags []int `json:"tags,omitempty"`
Expand Down

0 comments on commit e6be35d

Please sign in to comment.