Tor Circuit Info Display for P2P + Many Minor UI Fixups. #304

Merged
erinn merged 6 commits from getinfo into trunk 2022-01-17 23:05:12 +00:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 5494cb5de0 - Show all commits

View File

@ -1 +1 @@
2022-01-12-17-26-v1.5.4-3-gaf47036
2022-01-17-17-19-v1.5.4-5-g4cf95d6

View File

@ -1 +1 @@
2022-01-12-22-26-v1.5.4-3-gaf47036
2022-01-17-22-19-v1.5.4-5-g4cf95d6

View File

@ -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");