diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2022-12-08 05:05:04 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-08 05:05:04 +1000 |
commit | aa80bc77bf1ded343a77ebe226c2d0f207e7bb97 (patch) | |
tree | b272619bce7d4c9f898ff5c716974038b3e3b189 | |
parent | 26adddf24d919b812a1bedf2507d5d33d4ebdbcf (diff) | |
parent | 35bc73f784e2ffdb0aebfb52ec3f52378a97f740 (diff) |
Merge pull request #22212 from emveepee/eventname
PVR Event Log name change
-rw-r--r-- | xbmc/pvr/addons/PVRClients.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/pvr/addons/PVRClients.cpp b/xbmc/pvr/addons/PVRClients.cpp index c5c9f4325d..4ee6c6f516 100644 --- a/xbmc/pvr/addons/PVRClients.cpp +++ b/xbmc/pvr/addons/PVRClients.cpp @@ -856,7 +856,8 @@ void CPVRClients::ConnectionStateChange(CPVRClient* client, // Notify user. CServiceBroker::GetJobManager()->AddJob( - new CPVREventLogJob(bNotify, bError, client->Name(), strMsg, client->Icon()), nullptr); + new CPVREventLogJob(bNotify, bError, client->GetFriendlyName(), strMsg, client->Icon()), + nullptr); } namespace |