diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-31 15:21:32 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-31 15:21:32 -0400 |
| commit | 5bfcbd4e9e07880a55cd88be031b523832186d93 (patch) | |
| tree | 72560ff07a80af5cffdfaadbf399e8b9cf46fc32 /MediaBrowser.Controller/LiveTv | |
| parent | d8ec7109ab5ec561254465e1664974049cc556d7 (diff) | |
update dlna profiles
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 8a10ae4178..34a9103f84 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] |
