mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +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,
|
||||
localLangName, name )){
|
||||
boolean matches = true;
|
||||
JSONArray sums = dict.getJSONArray("md5sums");
|
||||
JSONArray sums = dict.optJSONArray("md5sums");
|
||||
if ( null != sums ) {
|
||||
matches = false;
|
||||
String[] curSums = DictLangCache.getDictMD5Sums( m_activity, name );
|
||||
|
|
Loading…
Reference in a new issue