Simplify code
This commit is contained in:
parent
335c0175a7
commit
d0d6798bb1
1 changed files with 4 additions and 8 deletions
|
@ -47,19 +47,15 @@ class PlexDBBase(object):
|
|||
answ = None
|
||||
if plex_type == v.PLEX_TYPE_MOVIE:
|
||||
entry = self.movie(plex_id)
|
||||
if entry:
|
||||
answ = self.entry_to_movie(entry)
|
||||
elif plex_type == v.PLEX_TYPE_EPISODE:
|
||||
entry = self.episode(plex_id)
|
||||
if entry:
|
||||
answ = self.entry_to_episode(entry)
|
||||
elif plex_type == v.PLEX_TYPE_SHOW:
|
||||
entry = self.show(plex_id)
|
||||
if entry:
|
||||
answ = self.entry_to_show(entry)
|
||||
elif plex_type == v.PLEX_TYPE_SEASON:
|
||||
entry = self.season(plex_id)
|
||||
if entry:
|
||||
answ = self.entry_to_season(entry)
|
||||
else:
|
||||
# SLOW - lookup plex_id in all our tables
|
||||
|
|
Loading…
Reference in a new issue