diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2020-02-27 16:02:18 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-27 16:02:18 +0300 |
| commit | d1670f81808a74865f8c4fb2c2a77ab01eb3bde9 (patch) | |
| tree | 815f2b89c24ef994ac7a38e695b7593b3f3e4e5e /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 8e20d2e931b273b54ef369c9b75021ab04118e04 (diff) | |
Apply suggestions from code review
Co-Authored-By: Claus Vium <cvium@users.noreply.github.com>
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 09cdfc9ea..66de080a3 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -392,7 +392,7 @@ namespace MediaBrowser.Controller.Entities var thisChunk = new StringBuilder(); bool isNumeric = char.IsDigit(thisCh); - while ((thisMarker < s1.Length) && (char.IsDigit(thisCh) == isNumeric)) + while (thisMarker < s1.Length && char.IsDigit(thisCh) == isNumeric) { thisChunk.Append(thisCh); thisMarker++; |
