mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
update channel sorting
This commit is contained in:
parent
a181425e54
commit
cd45b0b69c
@ -93,7 +93,7 @@ namespace MediaBrowser.Controller.LiveTv
|
|||||||
|
|
||||||
if (double.TryParse(Number, NumberStyles.Any, CultureInfo.InvariantCulture, out number))
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user