mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 13:01:28 +02:00
fixed issue where tvdbepisodeid change would break episode update.
This commit is contained in:
@@ -172,8 +172,8 @@ namespace NzbDrone.Core.Tv
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_episodeService.InsertMany(newList);
|
|
||||||
_episodeService.UpdateMany(updateList);
|
_episodeService.UpdateMany(updateList);
|
||||||
|
_episodeService.InsertMany(newList);
|
||||||
|
|
||||||
if (newList.Any())
|
if (newList.Any())
|
||||||
{
|
{
|
||||||
|
@@ -43,7 +43,7 @@ namespace NzbDrone.Core.Tv
|
|||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return string.Format("[{0}][{1}]", Id, Title.NullSafe());
|
return string.Format("[{0}][{1}]", TvdbId, Title.NullSafe());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user