Skip to content

Commit

Permalink
no blocklist
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Feb 8, 2024
1 parent 377cb2d commit 17d62b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/apps/lidarr.go
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ func lidarrDeleteQueue(req *http.Request) (int, interface{}) {

opts := &starr.QueueDeleteOpts{
RemoveFromClient: starr.False(),
BlockList: true,
BlockList: false,
SkipRedownload: false,
ChangeCategory: true,
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/apps/radarr.go
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ func radarrDeleteQueue(req *http.Request) (int, interface{}) {

opts := &starr.QueueDeleteOpts{
RemoveFromClient: starr.False(),
BlockList: true,
BlockList: false,
SkipRedownload: false,
ChangeCategory: true,
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/apps/readarr.go
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ func readarrDeleteQueue(req *http.Request) (int, interface{}) {

opts := &starr.QueueDeleteOpts{
RemoveFromClient: starr.False(),
BlockList: true,
BlockList: false,
SkipRedownload: false,
ChangeCategory: true,
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/apps/sonarr.go
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ func sonarrDeleteQueue(req *http.Request) (int, interface{}) {

opts := &starr.QueueDeleteOpts{
RemoveFromClient: starr.False(),
BlockList: true,
BlockList: false,
SkipRedownload: false,
ChangeCategory: true,
}
Expand Down

0 comments on commit 17d62b7

Please sign in to comment.