mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-04 20:46:28 +01:00
avoid NPE when invite isn't only thing passed
This commit is contained in:
parent
f12531e40b
commit
7fd366c2d9
1 changed files with 1 additions and 1 deletions
|
@ -2356,7 +2356,7 @@ public class GamesListDelegate extends ListDelegateBase
|
||||||
String data = NFCUtils.getFromIntent( intent );
|
String data = NFCUtils.getFromIntent( intent );
|
||||||
if ( null != data ) {
|
if ( null != data ) {
|
||||||
NetLaunchInfo nli = NetLaunchInfo.makeFrom( m_activity, data );
|
NetLaunchInfo nli = NetLaunchInfo.makeFrom( m_activity, data );
|
||||||
if ( nli.isValid() ) {
|
if ( null != nli && nli.isValid() ) {
|
||||||
startNewNetGame( nli );
|
startNewNetGame( nli );
|
||||||
result = true;
|
result = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue