diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2018-02-26 11:44:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-26 11:44:04 +0100 |
commit | 1e8a01323b9a508f4988ce89a1671b6f8c16bb59 (patch) | |
tree | 9747d80c1787bac0756b662c9fc48f9a2fc1b534 | |
parent | e871d73db81cfe74c7941b5aadfb1a6337b5bba0 (diff) | |
parent | 3d5784f5f8db1161f4f66b7e560ccddb887732b5 (diff) |
Merge pull request #13589 from ksooo/pvr-fix-inputstreampvrmanager-seektime
[PVR] Fix return value of CDVDInputStreamPVRManager::SeekTime.
-rw-r--r-- | xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamPVRManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamPVRManager.cpp b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamPVRManager.cpp index f288765106..7f7a9946b0 100644 --- a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamPVRManager.cpp +++ b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamPVRManager.cpp @@ -354,7 +354,7 @@ bool CDVDInputStreamPVRManager::SeekTime(double timems, bool backwards, double * CPVRClientPtr client; if (CServiceBroker::GetPVRManager().Clients()->GetPlayingClient(client)) { - return client->SeekTime(timems, backwards, startpts); + return client->SeekTime(timems, backwards, startpts) == PVR_ERROR_NO_ERROR; } return false; } |