don't check sums on built-in wordlists

I'm not sure where confusion creeps in, but I'm seeing offers to
upgrade BasEnglish that I don't think even succeed. Bad experience.
This commit is contained in:
Eric House 2024-02-09 14:24:43 -08:00
parent c7b9182eca
commit 4b470f5e0f

View file

@ -1487,7 +1487,8 @@ public class DictsDelegate extends ListDelegateBase
if ( !m_quickFetchMode ) {
// Check if we have it and it needs an update
if ( DictLangCache.haveDict( m_activity, isoCode, name )){
if ( DictLangCache.haveDict( m_activity, isoCode, name )
&& !DictUtils.dictIsBuiltin( m_activity, name ) ) {
boolean matches = true;
JSONArray sums = dict.optJSONArray("md5sums");
if ( null != sums ) {