chore(auto): task completed - unknown

This commit is contained in:
MythEclipse
2026-06-13 14:12:09 +07:00
parent 6822cb0bd3
commit 1a195b737e
3 changed files with 2 additions and 60 deletions
@@ -4,7 +4,6 @@ import {
COMMAND_VOICE_CHANNELS,
COMMAND_VOICE_CONNECT,
COMMAND_VOICE_DISCONNECT,
COMMAND_VOICE_DISCONNECT_GUILD,
CommandReply,
VOICE_STATUS_KEY,
} from "@bete/shared";
@@ -168,17 +167,3 @@ export async function disconnectVoice(): Promise<VoiceStatus> {
);
}
/**
* Disconnect from a specific guild's voice channel.
*/
export async function disconnectVoiceGuild(
guildId: string,
): Promise<VoiceStatus> {
logger.info({ guildId }, "disconnectVoiceGuild called");
return withFallback(
() =>
publishCommand<VoiceStatus>(COMMAND_VOICE_DISCONNECT_GUILD, { guildId }),
() => readVoiceStatusFallback(),
"disconnectVoiceGuild",
);
}