diff --git a/cache/jsonfeed-to-mastodon-timestamp.json b/cache/jsonfeed-to-mastodon-timestamp.json index a68180b6..859cf405 100644 --- a/cache/jsonfeed-to-mastodon-timestamp.json +++ b/cache/jsonfeed-to-mastodon-timestamp.json @@ -1,3 +1,3 @@ { - "timestamp": 1692720189860 + "timestamp": 1692907388701 } \ No newline at end of file diff --git a/cache/jsonfeed-to-mastodon.json b/cache/jsonfeed-to-mastodon.json index b0f736cf..bdc6f972 100644 --- a/cache/jsonfeed-to-mastodon.json +++ b/cache/jsonfeed-to-mastodon.json @@ -5885,5 +5885,16 @@ "https://social.lol/users/cory/statuses/110934110358697654" ], "lastTootTimestamp": 1692720189854 + }, + "https://letterboxd.com/cdme/film/along-came-a-spider/": { + "id": "https://letterboxd.com/cdme/film/along-came-a-spider/", + "title": "🎥: Along Came a Spider, 2001 - ★★", + "url": "https://letterboxd.com/cdme/film/along-came-a-spider/", + "content_text": "🎥: Along Came a Spider, 2001 - ★★ https://letterboxd.com/cdme/film/along-came-a-spider/", + "date_published": "2023-08-24T19:42:06-08:00", + "toots": [ + "https://social.lol/users/cory/statuses/110946378622156067" + ], + "lastTootTimestamp": 1692907388697 } } \ No newline at end of file diff --git a/src/_data/fathom.js b/src/_data/fathom.js deleted file mode 100644 index 28c3cc6d..00000000 --- a/src/_data/fathom.js +++ /dev/null @@ -1,24 +0,0 @@ -const fs = require('fs') -const fetch = require('node-fetch') - -module.exports = async function () { - const sourceUrl = 'https://cdn.usefathom.com/script.js' - - fetch(sourceUrl) - .then((response) => response.text()) - .then((sourceContent) => { - if (!sourceContent.includes('fathomScript.src.indexOf("cdn.usefathom.com")')) - throw new Error('Fathom script changed!') - const modifiedContent = sourceContent.replace( - 'fathomScript.src.indexOf("cdn.usefathom.com")', - 'fathomScript.src.indexOf("coryd.dev")' - ) - const newFilePath = './_site/script.js' - fs.writeFile(newFilePath, modifiedContent, (err) => { - if (err) console.log(err) - }) - }) - .catch((err) => { - console.error('Error downloading the file:', err) - }) -} diff --git a/src/_data/follow.js b/src/_data/follow.js index 8abf9a21..820088ab 100644 --- a/src/_data/follow.js +++ b/src/_data/follow.js @@ -12,7 +12,9 @@ module.exports = async function () { activity.posts.push({ id: entry.url, title: entry.title, - url: entry.url, + url: entry.url.includes('coryd.dev') + ? `${entry.url}?utm_campaign=syndication&utm_source=follow` + : entry.url, content_html: entry.content || '', date_published: entry.published, }) diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index ceed4b7f..c6d1f057 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -56,7 +56,7 @@ {% jsonLd meta, type, tags %}