diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-05-31 15:28:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-31 15:28:03 -0400 |
| commit | 4e10daf646e0788409f2bc52ef70effa2616e3f3 (patch) | |
| tree | 72560ff07a80af5cffdfaadbf399e8b9cf46fc32 /MediaBrowser.Controller/LiveTv | |
| parent | 6c5fe7935b5c684526117de7472a6c34903aad44 (diff) | |
| parent | 5bfcbd4e9e07880a55cd88be031b523832186d93 (diff) | |
Merge pull request #2676 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs index 8a10ae417..34a9103f8 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs @@ -101,7 +101,7 @@ namespace MediaBrowser.Controller.LiveTv } } - return Number + "-" + (Name ?? string.Empty); + return (Number ?? string.Empty) + "-" + (Name ?? string.Empty); } [IgnoreDataMember] |
