mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 12:44:19 +01:00
Apply suggestions from code review
Co-Authored-By: Claus Vium <cvium@users.noreply.github.com>
This commit is contained in:
@@ -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++;
|
||||
|
||||
Reference in New Issue
Block a user