fix(status): log errors in message editing to improve debugging

This commit is contained in:
2025-11-25 10:43:00 +01:00
parent 401ae56113
commit fe8d3dc78f

View File

@@ -174,7 +174,9 @@ export class StatusService {
const message = await channel.messages.fetch(gdb.persistent_message_id); const message = await channel.messages.fetch(gdb.persistent_message_id);
await message.edit({components: [await this.getUpdatedContainer(true)]}); await message.edit({components: [await this.getUpdatedContainer(true)]});
} }
} catch (error) {} } catch (error) {
console.log(error)
}
} }
}); });