|
|
|
@ -93,7 +93,7 @@ namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
|
|
|
|
|
if (double.TryParse(Number, NumberStyles.Any, CultureInfo.InvariantCulture, out number))
|
|
|
|
|
{
|
|
|
|
|
return (number * 10).ToString("00000-") + (Name ?? string.Empty);
|
|
|
|
|
return string.Format("{0:00000.0}", number) + "-" + (Name ?? string.Empty);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|