Skip to content

Commit

Permalink
Rename Episode to EpisodeCount
Browse files Browse the repository at this point in the history
  • Loading branch information
da3dsoul committed Dec 22, 2023
1 parent c06d889 commit 1021962
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Shoko.Server/API/v3/Helpers/SeriesFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ public SeriesWithMultipleReleasesResult GetSeriesWithMultipleReleasesResult(
Links = series.Links,
_AniDB = series._AniDB,
_TvDB = series._TvDB,
Episodes = episodesWithMultipleReleases,
EpisodeCount = episodesWithMultipleReleases,
};
}
}
2 changes: 1 addition & 1 deletion Shoko.Server/API/v3/Models/Shoko/Series.cs
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ public class SeriesWithMultipleReleasesResult : Series
/// <summary>
/// Number of episodes in the series which have multiple releases.
/// </summary>
public int Episodes { get; set; }
public int EpisodeCount { get; set; }
}

public enum SeriesType
Expand Down

0 comments on commit 1021962

Please sign in to comment.