diff --git a/packages/plugin-discord/src/messages.ts b/packages/plugin-discord/src/messages.ts index 391ab5e23b0..f699d4fe495 100644 --- a/packages/plugin-discord/src/messages.ts +++ b/packages/plugin-discord/src/messages.ts @@ -333,8 +333,12 @@ export class MessageManager { return; } - await (message.channel as TextChannel).sendTyping(); - + try { + await (message.channel as TextChannel).sendTyping(); + } catch(error) { + logger.warn(`failed to send typing: ${error}`); + } + await this.runtime.databaseAdapter.log({ body: { message, context, response: responseContent }, userId: this.runtime.agentId,