Skip to content

Commit b7495e8

Browse files
committed
fix: prevent double search when adding book
1 parent c19f23d commit b7495e8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

readarr.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ def add_book(
118118
"titleSlug": book_info["titleSlug"],
119119
"monitored": monitored,
120120
"anyEditionOk": True,
121-
"addOptions": {"searchForNewBook": search},
121+
"addOptions": {
122+
"searchForNewBook": False # manually searching below instead
123+
},
122124
"editions": book_info["editions"],
123125
"author": {
124126
"qualityProfileId": quality,

0 commit comments

Comments
 (0)