We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbd4a77 commit 08aa54fCopy full SHA for 08aa54f
2 files changed
‎src/commands/moderation/repel.ts‎
@@ -431,7 +431,8 @@ export const repelCommand = createCommand({
431
432
const timeout = await handleTimeout({
433
target: target,
434
- durationInMilliseconds: timeoutHours !== null ? timeoutHours * HOUR : DEFAULT_TIMEOUT_DURATION_MS,
+ durationInMilliseconds:
435
+ timeoutHours !== null ? timeoutHours * HOUR : DEFAULT_TIMEOUT_DURATION_MS,
436
});
437
438
const channels = getTextChannels(interaction);
‎src/util/advent-scheduler.ts‎
@@ -1,6 +1,6 @@
1
+import { promises as fs } from 'node:fs';
2
import { ChannelType, type Client } from 'discord.js';
3
import * as cron from 'node-cron';
-import { promises as fs } from 'node:fs';
4
import { config } from '../env.js';
5
6
const TRACKER_FILE = config.adventOfCodeTrackerPath;
0 commit comments