semantic bufo search find-bufo.com
bufo
1
fork

Configure Feed

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

fix(bot): disable gzip for getAuthorFeed to avoid decompression panic

the public bsky API returns gzip-compressed responses that trigger a
panic in zig's flate decompressor for large payloads. request identity
encoding instead.

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

zzstoatzz 1be826a2 41fc25fa

+1
+1
bot/src/bsky.zig
··· 615 615 const result = client.fetch(.{ 616 616 .location = .{ .url = url }, 617 617 .method = .GET, 618 + .headers = .{ .accept_encoding = .{ .override = "identity" } }, 618 619 .response_writer = &aw.writer, 619 620 }) catch |err| { 620 621 std.debug.print("getAuthorFeed failed: {}\n", .{err});