Browse Source

update channel sorting

Luke Pulverenti 8 years ago
parent
commit
cd45b0b69c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Controller/LiveTv/LiveTvChannel.cs

+ 1 - 1
MediaBrowser.Controller/LiveTv/LiveTvChannel.cs

@@ -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);
                 }
             }