aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Sommerfeld <3226626+ksooo@users.noreply.github.com>2023-12-26 13:03:23 +0100
committerGitHub <noreply@github.com>2023-12-26 13:03:23 +0100
commit3b91bd1c0b69635b26e445e34ea6fdcc1adaef60 (patch)
treeda4cb57e4644402d09a3765a11b274ebb71abf11
parent8a78f00ffae8db1092095b94c4bb9f3350d62979 (diff)
parent4d982e9af65ea97d5e79b7feaab337217ec67e81 (diff)
Merge pull request #24318 from ksooo/video-fix-strm-playback
[video] Fix crash on strm file playback.
-rw-r--r--xbmc/video/windows/GUIWindowVideoBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/video/windows/GUIWindowVideoBase.cpp b/xbmc/video/windows/GUIWindowVideoBase.cpp
index 30bc431216..b7f43a7132 100644
--- a/xbmc/video/windows/GUIWindowVideoBase.cpp
+++ b/xbmc/video/windows/GUIWindowVideoBase.cpp
@@ -1080,7 +1080,7 @@ bool CGUIWindowVideoBase::PlayItem(const std::shared_ptr<CFileItem>& pItem,
else if (pItem->IsPlayList())
{
// load the playlist the old way
- LoadPlayList(pItem->GetPath(), PLAYLIST::TYPE_VIDEO);
+ LoadPlayList(pItem->GetDynPath(), PLAYLIST::TYPE_VIDEO);
return true;
}
else if (m_guiState.get() && m_guiState->AutoPlayNextItem() && !g_partyModeManager.IsEnabled())