diff options
author | emveepee <nospam> | 2022-12-03 17:07:45 -0500 |
---|---|---|
committer | emveepee <nospam> | 2022-12-05 16:34:02 -0500 |
commit | 35bc73f784e2ffdb0aebfb52ec3f52378a97f740 (patch) | |
tree | b57e62ff900fd084f0098f66f5c2a1596fe1dc3e | |
parent | 95c4549b30f69cb22e018e701c8b2a3a0126868d (diff) |
PVR Event log name
The name sent to the event log is the PVR addon name which does not identify the instance having issues.
-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 |