Skip to content

Commit

Permalink
Fix CTvheadend::DemuxIsTimeShifting()
Browse files Browse the repository at this point in the history
  • Loading branch information
ksooo committed Jan 23, 2017
1 parent 57330e8 commit 98849fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.hts/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.hts"
version="4.0.4"
version="4.0.5"
name="Tvheadend HTSP Client"
provider-name="Adam Sutton, Sam Stenvall, Lars Op den Kamp, Kai Sommerfeld">
<requires>
Expand Down
3 changes: 3 additions & 0 deletions pvr.hts/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
4.0.5
- fix CTvheadend::DemuxIsTimeShifting

4.0.4
- improved: use the default retention (from server configuration)
- improved: buffering method when timeshifting
Expand Down
2 changes: 1 addition & 1 deletion src/Tvheadend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2511,7 +2511,7 @@ int64_t CTvheadend::DemuxGetTimeshiftBufferEnd() const

bool CTvheadend::DemuxIsTimeShifting() const
{
return m_dmx_active->IsRealTimeStream();
return m_dmx_active->IsTimeShifting();
}

bool CTvheadend::DemuxIsRealTimeStream() const
Expand Down

0 comments on commit 98849fc

Please sign in to comment.