Bugzilla – Bug 129
Covert art does not cache the 'not found' state
Last modified: 2008-09-15 14:37:04 UTC
In UpdateCoverArt, if no art is found it should save '0' to the info cache. Instead it appears this value is dropped and left as undef. Thus, if no art is found, it will continue to search again on every access. This slows down the UI greatly. -kdf
jeez...that was nasty to dig out, but its fixed: Info.pm Line 525 (approx) if ($cacheEntryArray->[$i]) { needs to read as: if (defined $cacheEntryArray->[$i]) { this way, a 0 will still pass. I'll include this with the browse-by-cover patch if not committed on its own before then.
There are 536 bugs in the database with targets of '---' that were fixed prior to new year 2006. I am setting them to targets of 6.2.1 to keep them from showing up in my queries.