From d6ea4827b6a483c695a9dc25a9d04a5a588d58e4 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Sun, 15 Feb 2026 18:37:43 -0800 Subject: [PATCH] Disable Threads for now --- app/social/index.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/social/index.mjs b/app/social/index.mjs index c7fa897..9ab0940 100644 --- a/app/social/index.mjs +++ b/app/social/index.mjs @@ -17,7 +17,7 @@ import EggstraWorkStatus from './generators/EggstraWorkStatus.mjs'; import EggstraWorkUpcomingStatus from './generators/EggstraWorkUpcomingStatus.mjs'; import BlueskyClient from './clients/BlueskyClient.mjs'; import ChallengeStatus from './generators/ChallengeStatus.mjs'; -import ThreadsClient from './clients/ThreadsClient.mjs'; +// import ThreadsClient from './clients/ThreadsClient.mjs'; function defaultStatusGenerators() { return [ @@ -46,7 +46,7 @@ function defaultClients() { // new TwitterClient, new MastodonClient, new BlueskyClient, - new ThreadsClient, + // new ThreadsClient, new ImageWriter, ]; }