Skip to content

Commit

Permalink
readarr validate bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Jul 19, 2024
1 parent a9faab5 commit 5ca9261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/unpackerr/readarr.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func (u *Unpackerr) validateReadarr() error {
tmp := u.Readarr[:0]

for idx := range u.Readarr {
if err := u.validateApp(&u.Lidarr[idx].StarrConfig, starr.Readarr); err != nil {
if err := u.validateApp(&u.Readarr[idx].StarrConfig, starr.Readarr); err != nil {
if errors.Is(err, ErrInvalidURL) {
continue // We ignore these errors, just remove the instance from the list.
}
Expand Down

0 comments on commit 5ca9261

Please sign in to comment.