FIX: No update path for pre-frodo scrapped thumb url without "aspect" attribute
[vuplus_xbmc] / xbmc / utils / ScraperUrl.cpp
index 184cb03..7d92a39 100644 (file)
@@ -313,7 +313,7 @@ void CScraperUrl::GetThumbURLs(std::vector<CStdString> &thumbs, const std::strin
 {
   for (vector<SUrlEntry>::const_iterator iter = m_url.begin(); iter != m_url.end(); ++iter)
   {
-    if (iter->m_aspect == type || type.empty() || type == "thumb")
+    if (iter->m_aspect == type || type.empty() || type == "thumb" || iter->m_aspect.empty())
     {
       if ((iter->m_type == CScraperUrl::URL_TYPE_GENERAL && season == -1)
        || (iter->m_type == CScraperUrl::URL_TYPE_SEASON && iter->m_season == season))