From e41a651d73fa65baf0f92374f4417bedd22b46c3 Mon Sep 17 00:00:00 2001 From: Elijah R Date: Sun, 21 Jan 2024 21:29:06 -0500 Subject: [PATCH] that should be public oops --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b8299ea..5aa485d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,7 +26,7 @@ async function main() { console.log(`Creating toot for ${metadata.title}`); var toot = await mastodon.v1.statuses.create({ status: `${metadata.description}\nhttps://crustywindo.ws/${title}`, - visibility: "private", + visibility: "public", mediaIds: [media.id] }); }