tangled
alpha
login
or
join now
socksthewolf.com
/
skyscheduler
1
fork
atom
Schedule posts to Bluesky with Cloudflare workers.
skyscheduler.work
cf
tool
bsky-tool
cloudflare
bluesky
schedule
bsky
service
social-media
cloudflare-workers
1
fork
atom
overview
issues
pulls
pipelines
puts have to be strings
explicitly convert it
SocksTheWolf
1 month ago
8fb3f0b3
9b0a119e
+1
-1
1 changed file
expand all
collapse all
unified
split
src
utils
inviteKeys.ts
+1
-1
src/utils/inviteKeys.ts
···
84
84
separator: '-',
85
85
capitalize: false,
86
86
});
87
87
-
c.executionCtx.waitUntil(c.env.INVITE_POOL!.put(newKey, usages));
87
87
+
c.executionCtx.waitUntil(c.env.INVITE_POOL!.put(newKey, usages.toString()));
88
88
return newKey;
89
89
}