mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03: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