mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-01 19:57:11 +01:00
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:
parent
c7b9182eca
commit
4b470f5e0f
1 changed files with 2 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue