Move promotion below description (#34)

This commit is contained in:
August Skare 2024-09-18 10:25:21 +02:00 committed by GitHub
parent 01768a1d9d
commit 70b9ca6dcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 5 deletions

View File

@ -61,11 +61,7 @@ function descriptionWithDonationPromotion(description: string): string {
const promotion =
`Takk for at du bruker NRSS 🙏🌟 Vurder å støtte utviklingen via Vipps med omtrent det samme som prisen på en kaffekopp. Se mer på https://nrss.deno.dev/`;
return `
${promotion} \n
--------------------------------\n
${description}
`;
return `${description}\n\n${promotion}`;
}
function assembleEpisode(episode: Episode, seriesId: Series["id"]): Tag {