1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-19 04:31:05 +00:00

fixed issue where tvdbepisodeid change would break episode update.

This commit is contained in:
Keivan Beigi 2013-07-05 15:54:42 -07:00
parent fc9dcb1084
commit f4ceb57b2b
2 changed files with 2 additions and 2 deletions

View file

@ -172,8 +172,8 @@ private void RefreshEpisodeInfo(Series series, IEnumerable<Episode> remoteEpisod
} }
} }
_episodeService.InsertMany(newList);
_episodeService.UpdateMany(updateList); _episodeService.UpdateMany(updateList);
_episodeService.InsertMany(newList);
if (newList.Any()) if (newList.Any())
{ {

View file

@ -43,7 +43,7 @@ public Series()
public override string ToString() public override string ToString()
{ {
return string.Format("[{0}][{1}]", Id, Title.NullSafe()); return string.Format("[{0}][{1}]", TvdbId, Title.NullSafe());
} }
} }
} }