tangled
alpha
login
or
join now
socksthewolf.com
/
skyscheduler
2
fork
atom
Schedule posts to Bluesky with Cloudflare workers.
skyscheduler.work
cf
tool
bsky-tool
cloudflare
bluesky
schedule
bsky
service
social-media
cloudflare-workers
2
fork
atom
overview
issues
pulls
pipelines
attempt to blast time a little later
SocksTheWolf
1 week ago
4fafd9e2
fef0e780
+1
-1
1 changed file
expand all
collapse all
unified
split
src
utils
queues
queueHandler.ts
+1
-1
src/utils/queues/queueHandler.ts
···
90
90
bufferBlasts = unique(bufferBlasts);
91
91
console.log(`Attempting to backblast ${bufferBlasts.length} items`);
92
92
for (const blast of bufferBlasts) {
93
93
-
await enqueueEmptyWork(runtimeWrapper, blast.type, blast.time);
93
93
+
await enqueueEmptyWork(runtimeWrapper, blast.type, blast.time + 10);
94
94
}
95
95
}
96
96
};