From 0abdd5adb7ac13badab83e918b87d143e522eeaf Mon Sep 17 00:00:00 2001 From: jmarshallnz Date: Sat, 15 Mar 2014 10:21:03 +1300 Subject: Merge pull request #4429 from Montellese/videodb_getfileinfo videodb: fix getting streamdetails in GetFileInfo() --- xbmc/video/VideoDatabase.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xbmc/video/VideoDatabase.cpp b/xbmc/video/VideoDatabase.cpp index 2db5c2d5cf..eb40d6ba25 100644 --- a/xbmc/video/VideoDatabase.cpp +++ b/xbmc/video/VideoDatabase.cpp @@ -1909,6 +1909,9 @@ bool CVideoDatabase::GetFileInfo(const CStdString& strFilenameAndPath, CVideoInf details.m_resumePoint.type = CBookmark::RESUME; } + // get streamdetails + GetStreamDetails(details); + return !details.IsEmpty(); } catch (...) -- cgit v1.2.3