diff options
author | enen92 <92enen@gmail.com> | 2020-11-12 12:32:29 +0000 |
---|---|---|
committer | enen92 <92enen@gmail.com> | 2020-11-12 12:32:29 +0000 |
commit | 8f5198051b58807d7e9d89469370450f317665e8 (patch) | |
tree | b9257eebe88f561d6daab04dc38bb89fd18cd52c | |
parent | 842c81bce4b8aef2ffd0359ca65f22c8ecb17c1b (diff) |
[Fix] Cast not showing when play next is set to episodes
-rw-r--r-- | xbmc/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index fb4978c27c..2bd0de56ce 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -2885,7 +2885,7 @@ bool CApplication::PlayFile(CFileItem item, const std::string& player, bool bRes CVideoDatabase dbs; dbs.Open(); - std::string path = item.GetPath(); + std::string path = item.GetDynPath(); std::string videoInfoTagPath(item.GetVideoInfoTag()->m_strFileNameAndPath); if (videoInfoTagPath.find("removable://") == 0) path = videoInfoTagPath; |