mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
Merge branch 'master' of git://github.com/kayone/NzbDrone
This commit is contained in:
commit
8f4fe398ed
@ -70,17 +70,9 @@ public void Start(ProgressNotification notification, int targetId)
|
|||||||
{
|
{
|
||||||
notification.CurrentMessage = String.Format("Searching for {0} in {1}", episode, indexer.Name);
|
notification.CurrentMessage = String.Format("Searching for {0} in {1}", episode, indexer.Name);
|
||||||
|
|
||||||
IList<EpisodeParseResult> indexerResults = new List<EpisodeParseResult>();
|
//TODO:Add support for daily episodes, maybe search using both date and season/episode?
|
||||||
|
var indexerResults = indexer.FetchEpisode(title, episode.SeasonNumber, episode.EpisodeNumber);
|
||||||
if (episode.IsDailyEpisode)
|
|
||||||
{
|
|
||||||
//TODO:Add support for daily episodes
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
indexerResults = indexer.FetchEpisode(title, episode.SeasonNumber, episode.EpisodeNumber);
|
|
||||||
}
|
|
||||||
|
|
||||||
reports.AddRange(indexerResults);
|
reports.AddRange(indexerResults);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
@ -24,12 +24,6 @@ public class Episode
|
|||||||
|
|
||||||
public Boolean Ignored { get; set; }
|
public Boolean Ignored { get; set; }
|
||||||
|
|
||||||
[Ignore]
|
|
||||||
public Boolean IsDailyEpisode
|
|
||||||
{
|
|
||||||
get { return EpisodeNumber == 0; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the grab date.
|
/// Gets or sets the grab date.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -77,8 +71,8 @@ public override string ToString()
|
|||||||
{
|
{
|
||||||
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
||||||
|
|
||||||
if (IsDailyEpisode)
|
//if (IsDailyEpisode)
|
||||||
return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
|
// return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
|
||||||
|
|
||||||
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
|
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
|
||||||
}
|
}
|
||||||
|
@ -183,7 +183,7 @@ public ActionResult Details(int seriesId)
|
|||||||
}
|
}
|
||||||
model.Overview = series.Overview;
|
model.Overview = series.Overview;
|
||||||
model.Seasons = _episodeProvider.GetSeasons(seriesId);
|
model.Seasons = _episodeProvider.GetSeasons(seriesId);
|
||||||
model.Title = series.Status;
|
model.Title = series.Title;
|
||||||
model.SeriesId = series.SeriesId;
|
model.SeriesId = series.SeriesId;
|
||||||
|
|
||||||
return View(model);
|
return View(model);
|
||||||
|
Loading…
Reference in New Issue
Block a user