diff options
author | vdrfan <vdrfan@svn> | 2010-03-02 18:50:05 +0000 |
---|---|---|
committer | vdrfan <vdrfan@svn> | 2010-03-02 18:50:05 +0000 |
commit | bcb38a79f99268fe3c195ad83e55c6938113999a (patch) | |
tree | f7f80213727167a4216abe390a24e8bc0074149b | |
parent | f688306144f128a20ec625cc6db3985f133aa0e8 (diff) |
fixed: do override the user's local thumbs on normal scan without nfo files (thanks jmarshall)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28317 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/VideoInfoScanner.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/xbmc/VideoInfoScanner.cpp b/xbmc/VideoInfoScanner.cpp index 8353288db3..a1f431b818 100644 --- a/xbmc/VideoInfoScanner.cpp +++ b/xbmc/VideoInfoScanner.cpp @@ -593,14 +593,11 @@ namespace VIDEO m_pObserver->OnSetTitle(url.strTitle); long lResult=1; // force thumb and fanart - bool bForce(false); - if (result==CNfoFile::NO_NFO || result==CNfoFile::ERROR_NFO) - bForce = true; if (pDlgProgress) - lResult=GetIMDBDetails(pItem.get(), url, info2, bDirNames && info2->Content() == CONTENT_MOVIES, pDlgProgress, result == CNfoFile::COMBINED_NFO, bForce); + lResult=GetIMDBDetails(pItem.get(), url, info2, bDirNames && info2->Content() == CONTENT_MOVIES, pDlgProgress, result == CNfoFile::COMBINED_NFO, ignoreNfo); else - lResult=GetIMDBDetails(pItem.get(), url, info2, bDirNames && info2->Content() == CONTENT_MOVIES, NULL, result == CNfoFile::COMBINED_NFO, bForce); + lResult=GetIMDBDetails(pItem.get(), url, info2, bDirNames && info2->Content() == CONTENT_MOVIES, NULL, result == CNfoFile::COMBINED_NFO, ignoreNfo); if (info2->Content() == CONTENT_TVSHOWS) { |