mirrorer

:)
git clone https://git.sr.ht/~ashymad/mirrorer
Log | Files | Refs | LICENSE

commit 46d3928a49e589e55d10af6ad5fb4a1f2b8f7cda
parent 999d1dbb83ee94dc616fde8da13c14723dc8b0bd
Author: Szymon Mikulicz <szymon.mikulicz@posteo.net>
Date:   Sat, 13 Jun 2026 23:21:56 +0200

Don't await

Diffstat:
Mworker/src/index.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/worker/src/index.ts b/worker/src/index.ts @@ -21,7 +21,7 @@ export default { }, async scheduled(event, env, ctx): Promise<void> { - let resp = await fetch('https://builds.sr.ht/query', { + let resp = fetch('https://builds.sr.ht/query', { method: 'POST', headers: { 'Content-Type': 'application/json',