Skip to content

Commit

Permalink
fixed remove message filter for the topic footer
Browse files Browse the repository at this point in the history
  • Loading branch information
GhomKrosmonaute committed Oct 29, 2024
1 parent e5d0e08 commit 8eb6fae
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions src/namespaces/point.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,23 +94,25 @@ export function buildHelpingFooterEmbed(

return {
embeds: [
new app.EmbedBuilder().setDescription(
`### ${
topicState?.resolved
? `${app.getSystemEmoji("success")} Topic résolu`
: `${app.getSystemEmoji("loading")} En attente d'aide`
}\n${
topicState?.resolved
? topicState.rewarded_helper_ids
.split(";")
.filter((id) => id !== "").length >= helpers.length
? helpers.length > 0
? "Merci pour vos retours ! Ouvrez un nouveau topic si besoin."
: "Ouvrez un nouveau topic si besoin."
: "Vous avez été bien aidé ?\nDans ce cas, remerciez le ou les membres qui vous ont aidé 😉"
: "Vous avez trouvé une solution ?\nSi oui, merci de passer ce topic en résolu."
}`,
),
new app.EmbedBuilder()
.setURL("https://helping")
.setDescription(
`### ${
topicState?.resolved
? `${app.getSystemEmoji("success")} Topic résolu`
: `${app.getSystemEmoji("loading")} En attente d'aide`
}\n${
topicState?.resolved
? topicState.rewarded_helper_ids
.split(";")
.filter((id) => id !== "").length >= helpers.length
? helpers.length > 0
? "Merci pour vos retours ! Ouvrez un nouveau topic si besoin."
: "Ouvrez un nouveau topic si besoin."
: "Vous avez été bien aidé ?\nDans ce cas, remerciez le ou les membres qui vous ont aidé 😉"
: "Vous avez trouvé une solution ?\nSi oui, merci de passer ce topic en résolu."
}`,
),
],
components:
components.length > 0
Expand Down Expand Up @@ -151,7 +153,13 @@ export async function refreshHelpingFooter(topic: app.ThreadChannel) {
})

const lastBotMessages = Array.from(lastMessages.values())
.filter((m) => m.author.id === topic.client.user.id && !m.system)
.filter(
(m) =>
m.author.id === topic.client.user.id &&
!m.system &&
m.embeds.length > 0 &&
m.embeds[0].url?.includes("helping"),
)
.slice(0, 3)

try {
Expand Down

0 comments on commit 8eb6fae

Please sign in to comment.