mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
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…
x
Reference in New Issue
Block a user