1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

Fixed: Size on disk display

This commit is contained in:
Mark McDowall 2015-06-07 23:32:22 -07:00
parent 408ff983cf
commit 36629242d1

View File

@ -75,7 +75,8 @@ namespace NzbDrone.Core.SeriesStats
private String GetEpisodeFilesJoin() private String GetEpisodeFilesJoin()
{ {
return @"LEFT OUTER JOIN EpisodeFiles return @"LEFT OUTER JOIN EpisodeFiles
ON EpisodeFiles.SeriesId = Episodes.SeriesId"; ON EpisodeFiles.SeriesId = Episodes.SeriesId
AND EpisodeFiles.SeasonNumber = Episodes.SeasonNumber";
} }
} }
} }