chore: merge branch dev
to main
#194
1 changed files with 7 additions and 4 deletions
|
@ -6,10 +6,12 @@ export default {
|
||||||
data: {
|
data: {
|
||||||
name: getFilename(__filename),
|
name: getFilename(__filename),
|
||||||
},
|
},
|
||||||
interaction: async (interaction: ModalSubmitInteraction, client: Client) =>
|
interaction: async (interaction: ModalSubmitInteraction, client: Client) => {
|
||||||
newReminder(client, interaction.fields.fields.get("reminderGUI-time")!.value, {
|
const message = interaction.fields.fields.get("reminderGUI-message")?.value;
|
||||||
|
|
||||||
|
return newReminder(client, interaction.fields.fields.get("reminderGUI-time")!.value, {
|
||||||
locale: interaction.locale,
|
locale: interaction.locale,
|
||||||
message: interaction.fields.fields.get("reminderGUI-message")?.value ?? null,
|
message: message ? (message.length > 0 ? message : null) : null,
|
||||||
createdAt: interaction.createdAt.getTime(),
|
createdAt: interaction.createdAt.getTime(),
|
||||||
channelId: interaction.channelId,
|
channelId: interaction.channelId,
|
||||||
userId: interaction.user.id,
|
userId: interaction.user.id,
|
||||||
|
@ -19,5 +21,6 @@ export default {
|
||||||
content: msg as string,
|
content: msg as string,
|
||||||
ephemeral: true,
|
ephemeral: true,
|
||||||
}),
|
}),
|
||||||
),
|
);
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue