diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java index 49f66b877..88b9620c8 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java @@ -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; }