mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
use opt instead of get
If I'd done that before I could stop the current false-upgrade problem server-side....
This commit is contained in:
parent
78b5e280cd
commit
088caee4f2
1 changed files with 1 additions and 1 deletions
|
@ -1483,7 +1483,7 @@ public class DictsDelegate extends ListDelegateBase
|
||||||
if ( DictLangCache.haveDict( m_activity,
|
if ( DictLangCache.haveDict( m_activity,
|
||||||
localLangName, name )){
|
localLangName, name )){
|
||||||
boolean matches = true;
|
boolean matches = true;
|
||||||
JSONArray sums = dict.getJSONArray("md5sums");
|
JSONArray sums = dict.optJSONArray("md5sums");
|
||||||
if ( null != sums ) {
|
if ( null != sums ) {
|
||||||
matches = false;
|
matches = false;
|
||||||
String[] curSums = DictLangCache.getDictMD5Sums( m_activity, name );
|
String[] curSums = DictLangCache.getDictMD5Sums( m_activity, name );
|
||||||
|
|
Loading…
Reference in a new issue