fix: extra lines removed
This commit is contained in:
parent
7d7edecafe
commit
ae16e81f8e
3 changed files with 6 additions and 4 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.20.2",
|
"version": "24.20.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.20.2",
|
"version": "24.20.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.20.2",
|
"version": "24.20.3",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -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)
|
await postToMastodon(mastodonApiUrl, accessToken, content)
|
||||||
|
|
||||||
const timestamp = new Date().toISOString()
|
const timestamp = new Date().toISOString()
|
||||||
|
|
||||||
await env.RSS_TO_MASTODON_NAMESPACE.put(item.link, timestamp)
|
await env.RSS_TO_MASTODON_NAMESPACE.put(item.link, timestamp)
|
||||||
|
|
||||||
console.log(`Posted stored URL: ${item.link}`)
|
console.log(`Posted stored URL: ${item.link}`)
|
||||||
|
|
Reference in a new issue