mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
Fixes getReactions again. (#2445)
* Update getReactions.ts fix it again -_- * Bump version
This commit is contained in:
@@ -28,7 +28,7 @@ export async function getReactions(
|
||||
const results = await bot.rest.runMethod<DiscordUser[]>(
|
||||
bot.rest,
|
||||
"GET",
|
||||
bot.constants.routes.CHANNEL_MESSAGE_REACTION(channelId, messageId, encodeURIComponent(reaction), options),
|
||||
bot.constants.routes.CHANNEL_MESSAGE_REACTION(channelId, messageId, reaction, options),
|
||||
);
|
||||
|
||||
return new Collection(
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ export const API_VERSION = 10;
|
||||
|
||||
// TODO: update this version
|
||||
/** https://github.com/discordeno/discordeno/releases */
|
||||
export const DISCORDENO_VERSION = "14.0.0";
|
||||
export const DISCORDENO_VERSION = "14.0.1";
|
||||
|
||||
/** https://discord.com/developers/docs/reference#user-agent */
|
||||
export const USER_AGENT = `DiscordBot (https://github.com/discordeno/discordeno, v${DISCORDENO_VERSION})`;
|
||||
|
||||
Reference in New Issue
Block a user