Actually fix tv request status

This commit is contained in:
samwiseg0 2018-12-27 18:49:43 -05:00
parent 2efa38507e
commit 8d09a784b8

View file

@ -65,7 +65,6 @@ class OmbiAPI(object):
# Request Type: Movie = 1, TV Show = 0
for movie in movie_requests:
hash_id = hashit(f'{movie.id}{movie.theMovieDbId}{movie.title}')
status = None
# Denied = 0, Approved = 1, Completed = 2, Pending = 3
if movie.denied:
@ -101,7 +100,6 @@ class OmbiAPI(object):
for show in tv_show_requests:
hash_id = hashit(f'{show.id}{show.tvDbId}{show.title}')
status = None
# Denied = 0, Approved = 1, Completed = 2, Pending = 3
if show.childRequests[0]['denied']: