aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-31 15:21:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-05-31 15:21:32 -0400
commit5bfcbd4e9e07880a55cd88be031b523832186d93 (patch)
tree72560ff07a80af5cffdfaadbf399e8b9cf46fc32 /MediaBrowser.Controller/LiveTv
parentd8ec7109ab5ec561254465e1664974049cc556d7 (diff)
update dlna profiles
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
-rw-r--r--MediaBrowser.Controller/LiveTv/LiveTvChannel.cs2
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]