We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6cccce commit e33f680Copy full SHA for e33f680
src/events/ready.ts
@@ -17,12 +17,13 @@ export const readyEvent = createEvent(
17
await fetchAndCachePublicChannelsMessages(guild, true);
18
}
19
20
- // Sync guides to channel
21
- try {
22
- console.log(`🔄 Starting guide sync to channel ${config.guides.channelId}...`);
23
- await syncGuidesToChannel(client, config.guides.channelId);
24
- } catch (error) {
25
- console.error('❌ Failed to sync guides:', error);
+ // Sync guides to channel
+ try {
+ console.log(`🔄 Starting guide sync to channel ${config.guides.channelId}...`);
+ await syncGuidesToChannel(client, config.guides.channelId);
+ } catch (error) {
+ console.error('❌ Failed to sync guides:', error);
26
+ }
27
28
29
);
0 commit comments