Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
janbar committed Feb 22, 2024
1 parent 20a5b73 commit a485982
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pvr.mythtv/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.mythtv"
version="20.6.5"
version="20.6.7"
name="MythTV PVR Client"
provider-name="Christian Fetzer, Jean-Luc Barrière">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
8 changes: 4 additions & 4 deletions src/pvrclient-mythtv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ bool PVRClientMythTV::Connect()
unsigned subid = 0;
m_eventHandler = new Myth::EventHandler(CMythSettings::GetMythHostname(), CMythSettings::GetProtoPort());
subid = m_eventHandler->CreateSubscription(this);
m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_HANDLER_STATUS);
m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_HANDLER_TIMER);
m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_ASK_RECORDING);
m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_RECORDING_LIST_CHANGE);
// m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_HANDLER_STATUS);
// m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_HANDLER_TIMER);
// m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_ASK_RECORDING);
// m_eventHandler->SubscribeForEvent(subid, Myth::EVENT_RECORDING_LIST_CHANGE);

// Create schedule manager and new subscription handled by dedicated thread
m_scheduleManager = new MythScheduleManager(CMythSettings::GetMythHostname(), CMythSettings::GetProtoPort(), CMythSettings::GetWSApiPort(), CMythSettings::GetWSSecurityPin());
Expand Down

0 comments on commit a485982

Please sign in to comment.