Schedule posts to Bluesky with Cloudflare workers. skyscheduler.work
cf tool bsky-tool cloudflare bluesky schedule bsky service social-media cloudflare-workers

fix control flag

min-fresh can't be on responses, just requests

+1 -1
+1 -1
src/endpoints/account.tsx
··· 113 113 account.get("/username", authMiddleware, async (c) => { 114 114 const username = await getUsernameForUser(c); 115 115 return c.text(username || "", 200, { 116 - "Cache-Control": "max-age=600, min-fresh=60, must-revalidate, private" 116 + "Cache-Control": "max-age=600, must-revalidate, private" 117 117 }); 118 118 }); 119 119