atproto utils for zig zat.dev
atproto sdk zig
26
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: reference upstream zig issue for gzip workaround

https://github.com/ziglang/zig/issues/25021

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz e81f1fb6 9450285d

+2 -2
+2 -2
src/internal/xrpc.zig
··· 85 85 var aw: std.Io.Writer.Allocating = .init(self.allocator); 86 86 defer aw.deinit(); 87 87 88 - // build extra headers for auth 89 - // disable gzip to work around deflate decompressor panic on x86_64-linux 88 + // disable gzip: zig stdlib flate.Decompress panics on certain streams 89 + // https://github.com/ziglang/zig/issues/25021 90 90 var extra_headers: std.http.Client.Request.Headers = .{ 91 91 .accept_encoding = .{ .override = "identity" }, 92 92 };