diff --git a/src/commands/StatusCommand.tsx b/src/commands/StatusCommand.tsx index a6186f9e..b0b5ab21 100644 --- a/src/commands/StatusCommand.tsx +++ b/src/commands/StatusCommand.tsx @@ -40,8 +40,8 @@ defineInterfaceCommand({ designator: ["status"], table: "mjolnir", parameters: parameters([]), - command: async function (this: DraupnirContext) { - return Ok(draupnirStatusInfo(this.draupnir)) + command: async function (this: DraupnirContext): Promise> { + return Ok(await draupnirStatusInfo(this.draupnir)) }, summary: "Show the status of the bot." })