diff options
| author | Shadowghost <Shadowghost@users.noreply.github.com> | 2024-05-25 11:46:29 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2024-05-25 11:46:29 -0400 |
| commit | 30b4ddeddf98deef525f577791cb8033753d3987 (patch) | |
| tree | 90f5dbfca295fd7c8369a5dad2e62c54cf912015 /Emby.Naming | |
| parent | 876ae44b8ab8972f44202c91ce71c6c3bea28688 (diff) | |
Backport pull request #11808 from jellyfin/release-10.9.z
Add Canceled to ended state
Original-merge: 4a54e5ddebdb01d34902c78253f7232ab7391d8d
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
Diffstat (limited to 'Emby.Naming')
| -rw-r--r-- | Emby.Naming/TV/TvParserHelpers.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Naming/TV/TvParserHelpers.cs b/Emby.Naming/TV/TvParserHelpers.cs index 2eca389da..029917858 100644 --- a/Emby.Naming/TV/TvParserHelpers.cs +++ b/Emby.Naming/TV/TvParserHelpers.cs @@ -10,7 +10,7 @@ namespace Emby.Naming.TV; public static class TvParserHelpers { private static readonly string[] _continuingState = ["Pilot", "Returning Series", "Returning"]; - private static readonly string[] _endedState = ["Cancelled"]; + private static readonly string[] _endedState = ["Cancelled", "Canceled"]; /// <summary> /// Tries to parse a string into <see cref="SeriesStatus"/>. |
