v2.0.2 #119

Merged
PxlLoewe merged 12 commits from staging into release 2025-07-26 05:55:41 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 2671571bfb - Show all commits

View File

@@ -99,7 +99,7 @@ export const handleConnectDispatch =
io.to("dispatchers").emit("dispatchers-update");
io.to("pilots").emit("dispatchers-update");
if (discordAccount?.id && !ghostMode) {
if (discordAccount?.id) {
await renameMember(
discordAccount.discordId.toString(),
`${getPublicUser(user).fullName} - ${user.publicId}`,

View File

@@ -177,6 +177,7 @@ export const useAudioStore = create<TalkState>((set, get) => ({
if (dispatchState.status === "connected" && dispatchState.connectedDispatcher?.id) {
changeDispatcherAPI(dispatchState.connectedDispatcher?.id, {
zone: roomName,
ghostMode: dispatchState.ghostMode,
});
}