Browse Source

Merge pull request #487 from mythern/dev

Workaround for #336
tags/release_0.1.0
Nils 11 years ago
parent
commit
1d7b904c50
  1. 18
      sickbeard/webserve.py

18
sickbeard/webserve.py

@ -2221,12 +2221,18 @@ class NewHomeAddShows:
# figure out what show we're adding and where
series_pieces = whichSeries.split('|')
if len(series_pieces) < 6:
return "Error with show selection."
indexer = int(series_pieces[1])
indexer_id = int(series_pieces[3])
show_name = series_pieces[4]
if (whichSeries and rootDir) or (whichSeries and fullShowPath and len(series_pieces) > 1):
if len(series_pieces) < 6:
logger.log("Unable to add show due to show selection. Not anough arguments: %s" % (repr(series_pieces)), logger.ERROR)
ui.notifications.error("Unknown error. Unable to add show due to problem with show selection.")
redirect('/home/addShows/existingShows/')
indexer = int(series_pieces[1])
indexer_id = int(series_pieces[3])
show_name = series_pieces[4]
else:
indexer = 1
indexer_id = int(whichSeries)
show_name = os.path.basename(os.path.normpath(fullShowPath))
# use the whole path if it's given, or else append the show name to the root dir to get the full show path
if fullShowPath:

Loading…
Cancel
Save