Revision: 12565
http://xbmc.svn.sourceforge.net/xbmc/?rev=12565&view=rev
Author: spiff_
Date: 2008-04-07 16:08:52 -0700 (Mon, 07 Apr 2008)
Log Message:
-----------
fixed: 100000l - turns out it's me who cannot use them parantheses (still hi to you vulkanr, the other one was utterly nonrelated to
the cheeky comment. its all true. *blush*)
Modified Paths:
--------------
branches/linuxport/XBMC/xbmc/VideoInfoScanner.cpp
Modified: branches/linuxport/XBMC/xbmc/VideoInfoScanner.cpp
===================================================================
--- branches/linuxport/XBMC/xbmc/VideoInfoScanner.cpp 2008-04-07 22:39:49 UTC (rev 12564)
+++ branches/linuxport/XBMC/xbmc/VideoInfoScanner.cpp 2008-04-07 23:08:52 UTC (rev 12565)
@@ -909,7 +909,7 @@
}
string image;
- if (pItem->GetProperty("HasAutoThumb") == "1" || (!pItem->HasThumbnail()) && http.Get(strImage, image))
+ if ((!pItem->HasThumbnail() || pItem->GetProperty("HasAutoThumb") == "1" ||) && http.Get(strImage, image))
{
try
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|