Skip to content

Commit 6f47e7f

Browse files
committed
TV series removed from watchlist even if auto remove set to none
Resolves #41
1 parent 6ed6b4e commit 6f47e7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ def download(self, retries=0, library=[], parentReleases=[]):
13571357
refresh_ = True
13581358
if result[1]:
13591359
retry = True
1360-
if not retry and (self.watchlist.autoremove == "both" or self.watchlist.autoremove == "show" or self.hasended()):
1360+
if not retry and (self.watchlist.autoremove == "both" or self.watchlist.autoremove == "show"):
13611361
self.watchlist.remove([], self)
13621362
toc = time.perf_counter()
13631363
ui_print('took ' + str(round(toc - tic, 2)) + 's')

0 commit comments

Comments
 (0)