3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-17 15:15:02 +00:00

fix: partial summary

This commit is contained in:
Ruby 2024-05-12 13:10:56 +02:00
parent 4252cb5ce0
commit 112bbc5478
No known key found for this signature in database
GPG key ID: 74D9DB37B03A4804
5 changed files with 15 additions and 13 deletions

View file

@ -121,11 +121,11 @@ export class GuildSavedMessages extends BaseGuildRepository<SavedMessage> {
if (msg.poll) {
data.poll = {
question: msg.poll.question,
answers: Array.from(msg.poll.answers.values()).map((answer) => ({
id: answer.id,
text: answer.text,
})),
question: msg.poll.question,
};
}

View file

@ -65,13 +65,13 @@ export interface ISavedMessageStickerData {
}
export interface ISavedMessagePollData {
question: {
text: string;
};
answers: {
id: number;
text: string | null;
}[];
question: {
text: string;
};
}
export interface ISavedMessageData {