aboutsummaryrefslogtreecommitdiff
path: root/xbmc/pvr/windows/GUIWindowPVRBase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/pvr/windows/GUIWindowPVRBase.cpp')
-rw-r--r--xbmc/pvr/windows/GUIWindowPVRBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/pvr/windows/GUIWindowPVRBase.cpp b/xbmc/pvr/windows/GUIWindowPVRBase.cpp
index ce891a80f7..c6ef99abce 100644
--- a/xbmc/pvr/windows/GUIWindowPVRBase.cpp
+++ b/xbmc/pvr/windows/GUIWindowPVRBase.cpp
@@ -423,7 +423,7 @@ bool CGUIWindowPVRBase::OpenChannelGroupSelectionDialog()
auto client = pvrMgr.GetClient(channelGroup->GetClientID());
if (client)
- selectedClient = client->GetFriendlyName();
+ selectedClient = client->GetFullClientName();
}
CPVRThumbLoader loader;
@@ -433,7 +433,7 @@ bool CGUIWindowPVRBase::OpenChannelGroupSelectionDialog()
// set client name as label2
const std::shared_ptr<const CPVRClient> client = pvrMgr.GetClient(*group);
if (client)
- group->SetLabel2(client->GetFriendlyName());
+ group->SetLabel2(client->GetFullClientName());
// set thumbnail
loader.LoadItem(group.get());