diff --git a/LIBCWTCH-GO-MACOS.version b/LIBCWTCH-GO-MACOS.version index 270b0601..c1538941 100644 --- a/LIBCWTCH-GO-MACOS.version +++ b/LIBCWTCH-GO-MACOS.version @@ -1 +1 @@ -2022-01-12-17-26-v1.5.4-3-gaf47036 \ No newline at end of file +2022-01-17-17-19-v1.5.4-5-g4cf95d6 \ No newline at end of file diff --git a/LIBCWTCH-GO.version b/LIBCWTCH-GO.version index 68121b4a..ed75fff0 100644 --- a/LIBCWTCH-GO.version +++ b/LIBCWTCH-GO.version @@ -1 +1 @@ -2022-01-12-22-26-v1.5.4-3-gaf47036 \ No newline at end of file +2022-01-17-22-19-v1.5.4-5-g4cf95d6 \ No newline at end of file diff --git a/lib/cwtch/cwtchNotifier.dart b/lib/cwtch/cwtchNotifier.dart index 80e0643d..f400f910 100644 --- a/lib/cwtch/cwtchNotifier.dart +++ b/lib/cwtch/cwtchNotifier.dart @@ -352,8 +352,11 @@ class CwtchNotifier { appState.SetModalState(ModalState.none); break; case "ACNInfo": + var key = data["Key"]; var handle = data["Handle"]; - profileCN.getProfile(data["ProfileOnion"])?.contactList.findContact(handle)?.acnCircuit = data["Data"]; + if (key == "circuit") { + profileCN.getProfile(data["ProfileOnion"])?.contactList.findContact(handle)?.acnCircuit = data["Data"]; + } break; default: EnvironmentConfig.debugLog("unhandled event: $type");