Skip to content

Commit

Permalink
1.0.27
Browse files Browse the repository at this point in the history
Don't send geochats to the server to prevent duplicates for now
  • Loading branch information
niccellular committed Jul 28, 2024
1 parent 769f137 commit f4e532f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
buildscript {


ext.PLUGIN_VERSION = "1.0.26"
ext.PLUGIN_VERSION = "1.0.27"
ext.ATAK_VERSION = "4.10.0"

def takdevVersion = '2.+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

import androidx.core.app.NotificationCompat;

import com.atakmap.android.chat.ChatDatabase;
import com.atakmap.android.cot.CotMapComponent;
import com.atakmap.android.maps.MapView;
import com.atakmap.android.meshtastic.plugin.R;
Expand Down Expand Up @@ -878,7 +879,7 @@ else if (team.equals("DarkGreen"))
if (cotEvent.isValid()) {
CotMapComponent.getInternalDispatcher().dispatch(cotEvent);
if (prefs.getBoolean("plugin_meshtastic_server", false)) {
CotMapComponent.getExternalDispatcher().dispatch(cotEvent);
//CotMapComponent.getExternalDispatcher().dispatch(cotEvent);
}
} else
Log.e(TAG, "cotEvent was not valid");
Expand Down

0 comments on commit f4e532f

Please sign in to comment.