diff options
author | Ryan Rector <rmrector@gmail.com> | 2020-02-09 09:45:01 -0700 |
---|---|---|
committer | Ryan Rector <rmrector@gmail.com> | 2020-02-09 09:45:01 -0700 |
commit | 3eed7d28f620def7958814d70c1cbbf559751a5f (patch) | |
tree | ef273c70af8b5fb7a7c180e20950207f9f27539c | |
parent | 9940d952fa07dd137e60267f3d21811c67ae79e7 (diff) |
Don't try to generate a thumb for unresolved plugin path
-rw-r--r-- | xbmc/video/VideoThumbLoader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/video/VideoThumbLoader.cpp b/xbmc/video/VideoThumbLoader.cpp index bf6b49696c..4af2438ba3 100644 --- a/xbmc/video/VideoThumbLoader.cpp +++ b/xbmc/video/VideoThumbLoader.cpp @@ -84,6 +84,7 @@ bool CThumbExtractor::DoWork() || URIUtils::IsPVRRecording(m_item.GetDynPath()) || URIUtils::IsUPnP(m_item.GetPath()) || URIUtils::IsBluray(m_item.GetPath()) + || URIUtils::IsPlugin(m_item.GetDynPath()) // plugin path not fully resolved || m_item.IsBDFile() || m_item.IsDVD() || m_item.IsDiscImage() |