commit
8e1c53aaf4
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.2.5.2")]
|
||||
[assembly: AssemblyVersion("3.2.5.3")]
|
||||
|
|
Loading…
Reference in New Issue
Block a user