diff options
author | Matthias Kortstiege <mkortstiege@kodi.tv> | 2015-03-08 18:51:27 +0100 |
---|---|---|
committer | Matthias Kortstiege <mkortstiege@kodi.tv> | 2015-03-24 09:11:59 +0100 |
commit | 33c8da6e526a1fcccacd1e18fb359ff4f082dd8c (patch) | |
tree | 3b8d5e9e08bf073bb5aab36ccf1b8e3a370d0f69 | |
parent | e7ba06fbcc055ab3364258b80ec195954ea041f9 (diff) |
[videoinfoscanner] fix shows not picked up after initial scan abort
-rw-r--r-- | xbmc/video/VideoInfoScanner.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/xbmc/video/VideoInfoScanner.cpp b/xbmc/video/VideoInfoScanner.cpp index 80f444b36b..32c223dc59 100644 --- a/xbmc/video/VideoInfoScanner.cpp +++ b/xbmc/video/VideoInfoScanner.cpp @@ -371,10 +371,7 @@ namespace VIDEO GetPathHash(items, hash); bSkip = true; if (!m_database.GetPathHash(strDirectory, dbHash) || dbHash != hash) - { - m_database.SetPathHash(strDirectory, hash); bSkip = false; - } else items.Clear(); } |