🔔
Remove Timeout
mod.untimeoutThe Mod SquadModerationClears an active timeout and restores a member's ability to chat. Handy for manual override commands — a mod can un-mute someone before their timeout would naturally expire.
When to use this
- →Connect the Error port — if the member wasn't timed out, the flow takes that path
On the canvas
This is what Remove Timeout looks like when you place it on your flow. Each field below is something you configure in the inspector panel.
🔔Moderation
Remove Timeout
mod.untimeoutuserIdrequired
{{user.id}}
output
error
Config fields
| Field | Type | Req | What it does |
|---|---|---|---|
userId{{user.id}} | text | yes | Who to un-mute 👤 |
Output ports
outputTimeout cleared
errorMember wasn't timed out, or bot lacks permission
📐
In TypeScript, this would be…
Not something you need to write — just a look at what Kitcord does for you.
TypeScript
try {
const member = await guild.members.fetch(userId);
await member.timeout(null);
} catch {
// Error port
}More Moderation pieces