aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BaseItem.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2020-02-27 16:02:18 +0300
committerGitHub <noreply@github.com>2020-02-27 16:02:18 +0300
commitd1670f81808a74865f8c4fb2c2a77ab01eb3bde9 (patch)
tree815f2b89c24ef994ac7a38e695b7593b3f3e4e5e /MediaBrowser.Controller/Entities/BaseItem.cs
parent8e20d2e931b273b54ef369c9b75021ab04118e04 (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.cs2
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++;