Browse Source

Get new info when titles are missing

pull/3111/head
Ruud 11 years ago
parent
commit
720af9085a
  1. 2
      couchpotato/core/media/movie/_base/main.py

2
couchpotato/core/media/movie/_base/main.py

@ -69,7 +69,7 @@ class MovieBase(MovieTypeBase):
pass
info = params.get('info')
if not info:
if not info or (info and len(info.get('titles', [])) == 0):
info = fireEvent('movie.info', merge = True, extended = False, identifier = params.get('identifier'))
# Set default title

Loading…
Cancel
Save