mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-14 14:16:35 +00:00
update channel sorting
This commit is contained in:
@@ -93,7 +93,7 @@ namespace MediaBrowser.Controller.LiveTv
|
||||
|
||||
if (double.TryParse(Number, NumberStyles.Any, CultureInfo.InvariantCulture, out number))
|
||||
{
|
||||
return number.ToString("00000-") + (Name ?? string.Empty);
|
||||
return (number * 10).ToString("00000-") + (Name ?? string.Empty);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user