Teages

Results 47 comments of Teages

We already noticed that the game crash on newly Android device (and have more than 8 GB RAM). We are planning to release a new version for Android and it...

please verify your email and send the email with the verified email addresss. According to the requirements of some countries, we should need to add a way to allow user...

> Although that upload works fine, I have this wired error in terminal > > it is from the wroked, as [their member said](https://github.com/cloudflare/workerd/issues/1472#issuecomment-1850322438): > This message is not really...

> I was wondering how we can change API routes to remove query params. > > Just an idea: > > * `/blob/multipart/[...pathname].post.ts` create a multip part upload > *...

> I think to move forward, I would like to have a `multipart: true` option for `hubBlob().put()` as automatic multipart: > > ```ts > await hubBlob().put('movie.mp4', file, { > multipart:...

well I designed a composable creater: ```ts export const useMultipartUpload = createMultipartUploader({ create: (file) => $fetch(), upload: ({ partNumber, chunkBody }, { pathname, uploadId }) => $fetch(), complete: (parts, {...

That would be great, what options do we need for `handleMultipartUpload`? I would like to provide some hooks like `beforeCreate`, `afterCompleted` and etc, but we can let developers do themself...

oops seems I messed up, I need some time to solve

ok it looks good now

I noticed #99, everything looks fine except the way to resolve returning is different. In this pr I use `respondWith` to force the response to be the handled response, but...