diff options
author | ksooo <3226626+ksooo@users.noreply.github.com> | 2023-10-20 13:46:41 +0200 |
---|---|---|
committer | ksooo <3226626+ksooo@users.noreply.github.com> | 2023-10-20 13:48:06 +0200 |
commit | 1e9a67eba5b08d9263c96927f7573f7eae47bb4e (patch) | |
tree | 318fac42444b42ad30e52ce3a661b64e142b95d2 | |
parent | 8262078680c935d6a5045c54eda11cb8d2c7c75e (diff) |
[cores] Fix CDVDInputStreamBluray::Open check for item being resumable.
-rw-r--r-- | xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp index c7ae0433c6..55f66b8d7d 100644 --- a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp +++ b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp @@ -332,7 +332,7 @@ bool CDVDInputStreamBluray::Open() m_navmode = false; m_titleInfo = GetTitleLongest(); } - else if (resumable && m_item.GetStartOffset() == STARTOFFSET_RESUME) + else if (resumable && m_item.GetStartOffset() == STARTOFFSET_RESUME && m_item.IsResumable()) { // resuming a bluray for which we have a saved state - the playlist will be open later on SetState m_navmode = false; |