diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DispatchNotify.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DispatchNotify.java index 6e2b77683..39ce68450 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/DispatchNotify.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/DispatchNotify.java @@ -54,17 +54,17 @@ public class DispatchNotify extends Activity { Uri data = getIntent().getData(); if ( null != relayIDs ) { - if ( !tryHandle( relayIDs ) ) { + // if ( !tryHandle( relayIDs ) ) { mustLaunch = true; - } + // } } else if ( null != data ) { - if ( !tryHandle( data ) ) { + // if ( !tryHandle( data ) ) { mustLaunch = true; - } + // } } if ( mustLaunch ) { - Utils.logf( "DispatchNotify: nothing running" ); + Utils.logf( "DispatchNotify: launching GamesList activity" ); Intent intent = new Intent( this, GamesList.class ); intent.setFlags( Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK );