[Closes #55] Generate predictable MAC address (but avoid sneaky data leakage)

This commit is contained in:
Casper Warden
2022-04-19 16:12:21 +01:00
parent 2104e03b40
commit 12b11b4b52
5 changed files with 81 additions and 88 deletions

View File

@@ -359,7 +359,7 @@ export class Comms
private async groupChatExpired(groupID: UUID): Promise<void>
{
// Reconnect to group chat since it's been idle for 15 minutes
await this.agent.currentRegion.clientCommands.comms.endGroupChatSession(groupID, false);
await this.agent.currentRegion.clientCommands.comms.endGroupChatSession(groupID);
await this.agent.currentRegion.clientCommands.comms.startGroupChatSession(groupID, '');
}
}