mirror of
https://github.com/SinTan1729/TvTimeToTrakt.git
synced 2025-04-19 17:40:01 -05:00
Fix search bug
This commit is contained in:
parent
0f869788fb
commit
033ad1e79b
2 changed files with 3 additions and 2 deletions
|
@ -133,7 +133,7 @@ class TVShowProcessor(Processor):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _search_trakt(self, tv_time_show: TVTimeTVShow) -> TraktTVShow:
|
def _search_trakt(self, tv_time_show: TVTimeTVShow) -> TraktTVShow:
|
||||||
return TVShowSearcher(tv_time_show).search_trakt(tv_time_show.name)
|
return TVShowSearcher(tv_time_show).search(tv_time_show.title)
|
||||||
|
|
||||||
def _process(self, tv_time_show: TVTimeTVShow, trakt_show: TraktItem, progress: float) -> None:
|
def _process(self, tv_time_show: TVTimeTVShow, trakt_show: TraktItem, progress: float) -> None:
|
||||||
logging.info(
|
logging.info(
|
||||||
|
@ -188,7 +188,7 @@ class MovieProcessor(Processor):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _search_trakt(self, tv_time_movie: TVTimeMovie) -> TraktMovie:
|
def _search_trakt(self, tv_time_movie: TVTimeMovie) -> TraktMovie:
|
||||||
return MovieSearcher().search_trakt(tv_time_movie.name)
|
return MovieSearcher().search(tv_time_movie.title)
|
||||||
|
|
||||||
def _process(self, tv_time_movie: TVTimeMovie, trakt_movie: TraktMovie, progress: float) -> None:
|
def _process(self, tv_time_movie: TVTimeMovie, trakt_movie: TraktMovie, progress: float) -> None:
|
||||||
logging.info(f"({progress}) - Processing '{tv_time_movie.name}'")
|
logging.info(f"({progress}) - Processing '{tv_time_movie.name}'")
|
||||||
|
|
|
@ -92,6 +92,7 @@ class Title:
|
||||||
class TVTimeItem:
|
class TVTimeItem:
|
||||||
def __init__(self, name: str, updated_at: str):
|
def __init__(self, name: str, updated_at: str):
|
||||||
self.name = name
|
self.name = name
|
||||||
|
self.title = Title(name)
|
||||||
# Get the date which the show was marked 'watched' in TV Time
|
# Get the date which the show was marked 'watched' in TV Time
|
||||||
# and parse the watched date value into a Python object
|
# and parse the watched date value into a Python object
|
||||||
self.date_watched = datetime.strptime(
|
self.date_watched = datetime.strptime(
|
||||||
|
|
Loading…
Reference in a new issue