diff --git a/sickrage/search_providers/nzb/binsearch.py b/sickrage/search_providers/nzb/binsearch.py index 066673bcae1c0eb59570cb3b6dd52b1a5664e288..25fa86581945f4aa962d81b96f2d08d57c846844 100644 --- a/sickrage/search_providers/nzb/binsearch.py +++ b/sickrage/search_providers/nzb/binsearch.py @@ -80,9 +80,9 @@ class BinSearchCache(TVCache): return title, url - def update(self): + def update(self, force=False): # check if we should update - if self.should_update(): + if self.should_update() or force: # clear cache self.clear()