mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
check for null (fixing occasional NPE)
This commit is contained in:
parent
2692a8333f
commit
19ba4d8dea
1 changed files with 1 additions and 1 deletions
|
@ -542,7 +542,7 @@ public class GamesList extends XWListActivity
|
|||
if ( null != relayIDs ) {
|
||||
for ( String relayID : relayIDs ) {
|
||||
String path = DBUtils.getPathFor( this, relayID );
|
||||
if ( GameUtils.gameDictsHere( this, path ) ) {
|
||||
if ( null != path && GameUtils.gameDictsHere( this, path ) ) {
|
||||
GameUtils.launchGame( this, path );
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue