Zig fetch, codeberg release

Hello,

I am trying to release a library, and fetch the release, like so, but get an error:

zig fetch --save https://codeberg.org/removewingman/restricted-zig/releases/download/v1.0.0/restricted-v1.0.0.tar.gz

error: unsupported Content-Disposition header value: 'inline; filename="restricted-v1.0.0.tar.gz"; filename*=UTF-8''restricted-v1.0.0.tar.gz' for Content-Type=application/octet-stream

If I do this, it works:

 zig fetch --save https://codeberg.org/removewingman/restricted-zig/archive/v1.0.0.tar.gz

Does anyone know why?

Nevermind, this looks like a codeberg error:

Zig’s fetch parser expects standard RFC 6266 formatting but chokes on the malformed filename* parameter—the empty UTF-8'' prefix before the repeated filename is invalid (it should be UTF-8''%27restricted... if quoted, or properly percent-encoded).