Parent Directory
|
Revision Log
Release version 1.8.0 * Added setTimeout() and DB combination support so that the timeouts would never get lost even if the bot stops * Added messages scheduling, expiring and both in one support
1 | rakin | 45 | async function expire(message_id, channel_id, guild_id) { |
2 | console.log(channel_id, guild_id); | ||
3 | const guild = await app.client.guilds.cache.get(guild_id); | ||
4 | |||
5 | if (guild) { | ||
6 | const channel = await guild.channels.fetch(channel_id); | ||
7 | |||
8 | if (channel) { | ||
9 | const message = await channel.messages.fetch(message_id); | ||
10 | |||
11 | if (message) { | ||
12 | await message.delete(); | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | } | ||
17 | |||
18 | module.exports = expire; |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |