diff options
author | spiff_ <spiff_@svn> | 2010-10-12 18:21:31 +0000 |
---|---|---|
committer | spiff_ <spiff_@svn> | 2010-10-12 18:21:31 +0000 |
commit | a30813be8015678be3398b5c5223937a6b659000 (patch) | |
tree | bde457eef812fd4ec871f5d0d0753ed54980ed99 | |
parent | 5b3922405b4202a42b4aadcd0510990893b3e34d (diff) |
Fixed: made HTSPDirectory set content to "LiveTV" instead of "Movies" to be consistent with "VideoPlayer.Content" boolean. Someone with the know how should probably do the same for VTPDirectory (VDR)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@34712 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/FileSystem/HTSPDirectory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/FileSystem/HTSPDirectory.cpp b/xbmc/FileSystem/HTSPDirectory.cpp index 90f098e5df..e60e37e4b3 100644 --- a/xbmc/FileSystem/HTSPDirectory.cpp +++ b/xbmc/FileSystem/HTSPDirectory.cpp @@ -401,6 +401,8 @@ bool CHTSPDirectory::GetChannels( const CURL &base else items.AddSortMethod(SORT_METHOD_LABEL, 20364, LABEL_MASKS("%Z", "%B", "%L", "")); + items.SetContent("livetv"); + return !channels.empty(); } |