fix: extra lines removed

This commit is contained in:
Cory Dransfeldt 2024-09-26 17:52:45 -07:00
parent 7d7edecafe
commit ae16e81f8e
No known key found for this signature in database
3 changed files with 6 additions and 4 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "24.20.2",
"version": "24.20.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "24.20.2",
"version": "24.20.3",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "24.20.2",
"version": "24.20.3",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

View file

@ -44,11 +44,13 @@ async function handleMastodonPost(env) {
]
})
const content = truncateContent(title, plainTextDescription, link, maxLength)
const cleanedDescription = plainTextDescription.replace(/\s+/g, ' ').trim()
const content = truncateContent(title, cleanedDescription, link, maxLength)
await postToMastodon(mastodonApiUrl, accessToken, content)
const timestamp = new Date().toISOString()
await env.RSS_TO_MASTODON_NAMESPACE.put(item.link, timestamp)
console.log(`Posted stored URL: ${item.link}`)