diff --git a/lib/likes-sync.js b/lib/likes-sync.js index 687bf47..31cb7b7 100644 --- a/lib/likes-sync.js +++ b/lib/likes-sync.js @@ -169,15 +169,15 @@ export async function syncLikes({ db, youtubeConfig, publication, postsCollectio "post-type": "like", "mp-slug": slug, "like-of": videoUrl, - name: `Liked "${video.title}" by ${video.channelTitle}`, + name: `${video.title} - ${video.channelTitle}`, content: { - text: `Liked "${video.title}" by ${video.channelTitle} on YouTube`, - html: `Liked "${escapeHtml(video.title)}" by ${escapeHtml(video.channelTitle)} on YouTube`, + text: `${video.title} - ${video.channelTitle}`, + html: `${escapeHtml(video.title)} - ${escapeHtml(video.channelTitle)}`, }, published: new Date().toISOString(), url: postUrl, visibility: "public", - "post-status": "published", + "post-status": "draft", "youtube-video-id": videoId, "youtube-channel": video.channelTitle, "youtube-thumbnail": video.thumbnail || "",