diff options
| author | artiume <siderite@gmail.com> | 2020-05-14 12:42:22 -0400 |
|---|---|---|
| committer | artiume <siderite@gmail.com> | 2020-05-15 09:36:30 -0400 |
| commit | eb3ce3fb8789ed697471f1fe14d2f85591527b56 (patch) | |
| tree | 73807d1ee6c5c60722e9d983a9a474ae6195ff84 | |
| parent | 18953d95e6692290bf56547d4c9614790687654c (diff) | |
Fix Progressive Stream 'P' capitalization
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index e7e8d7cec..4a179776d 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -199,7 +199,7 @@ namespace MediaBrowser.Model.Entities { return "1440I"; } - return "1440P"; + return "1440p"; } if (width >= 1900 || height >= 1000) { @@ -207,7 +207,7 @@ namespace MediaBrowser.Model.Entities { return "1080I"; } - return "1080P"; + return "1080p"; } if (width >= 1260 || height >= 700) { @@ -215,7 +215,7 @@ namespace MediaBrowser.Model.Entities { return "720I"; } - return "720P"; + return "720p"; } if (width >= 700 || height >= 440) { @@ -224,7 +224,7 @@ namespace MediaBrowser.Model.Entities { return "480I"; } - return "480P"; + return "480p"; } return "SD"; |
