mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
Fixed: Don't ignore number only aliases
This commit is contained in:
parent
dd8fbb438f
commit
3f8bb24b75
@ -204,18 +204,7 @@ namespace NzbDrone.Core.DataAugmentation.Xem
|
|||||||
{
|
{
|
||||||
var mappings = _xemProxy.GetSceneTvdbNames();
|
var mappings = _xemProxy.GetSceneTvdbNames();
|
||||||
|
|
||||||
return mappings.Where(m =>
|
return mappings;
|
||||||
{
|
|
||||||
int id;
|
|
||||||
|
|
||||||
if (int.TryParse(m.Title, out id))
|
|
||||||
{
|
|
||||||
_logger.Debug("Skipping all numeric name: {0} for {1}", m.Title, m.TvdbId);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}).ToList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Handle(SeriesUpdatedEvent message)
|
public void Handle(SeriesUpdatedEvent message)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user