increase icon search to 150 tries

This commit is contained in:
Adrian Ulrich 2017-01-18 20:19:32 +01:00
parent 604930f807
commit 055ed2c053

View File

@ -419,8 +419,8 @@ public class CoverCache {
break;
}
}
// Stop loop if we found the best match or if we looped 50 times
if (loopCount++ > 50 || bestMatchIndex == 0)
// Stop loop if we found the best match or if we looped 150 times
if (loopCount++ > 150 || bestMatchIndex == 0)
break;
}
}