mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
Fixed notification messages for Season searches.
This commit is contained in:
parent
854cd26e5a
commit
9fd2f9ec72
@ -50,7 +50,7 @@ public virtual bool SeasonSearch(ProgressNotification notification, int seriesId
|
||||
return false;
|
||||
}
|
||||
|
||||
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series, seasonNumber);
|
||||
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series.Title, seasonNumber);
|
||||
|
||||
var indexers = _indexerProvider.GetEnabledIndexers();
|
||||
var reports = new List<EpisodeParseResult>();
|
||||
@ -242,7 +242,7 @@ public virtual List<int> PartialSeasonSearch(ProgressNotification notification,
|
||||
return new List<int>();
|
||||
}
|
||||
|
||||
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series, seasonNumber);
|
||||
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series.Title, seasonNumber);
|
||||
|
||||
var indexers = _indexerProvider.GetEnabledIndexers();
|
||||
var reports = new List<EpisodeParseResult>();
|
||||
|
Loading…
Reference in New Issue
Block a user