From 9752c96add4371959967f8b858506fed0254156d Mon Sep 17 00:00:00 2001 From: Eric House Date: Sun, 6 Sep 2020 12:33:17 -0700 Subject: [PATCH] remove reporting of deleted games (mqtt only) It's wrong now while mqtt deviIDs are changing mid-game. --- .../app/src/main/java/org/eehouse/android/xw4/MQTTUtils.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/MQTTUtils.java b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/MQTTUtils.java index 0c3f9b9e8..47dc26603 100644 --- a/xwords4/android/app/src/main/java/org/eehouse/android/xw4/MQTTUtils.java +++ b/xwords4/android/app/src/main/java/org/eehouse/android/xw4/MQTTUtils.java @@ -568,8 +568,9 @@ public class MQTTUtils extends Thread implements IMqttActionListener, MqttCallba public static void handleGameGone( Context context, CommsAddrRec from, int gameID ) { - new MQTTServiceHelper( context, from ) - .postEvent( MultiService.MultiEvent.MESSAGE_NOGAME, gameID ); + // new MQTTServiceHelper( context, from ) + // .postEvent( MultiService.MultiEvent.MESSAGE_NOGAME, gameID ); + Log.d( TAG, "not posting game-gone for now (gameID: %d)" , gameID ); } public static void fcmConfirmed( Context context, boolean working )