core: Fix non-small WebSocket response cause panic
websocket.zig has small max-size, and it was the culprit for GTK-Adwaita
app crashing on opening "Library > Tracks".
Changes
1 changed files
(+1/-0)
var ws = try websocket.Client.init(allocator, .{
.host = self.internal.host,
.port = self.internal.server.internal.address.getPort(),
+
.max_size = std.math.maxInt(u32),
});
errdefer ws.deinit();
Authored by
Shota FUJI
Authored at
2025-06-07 15:02:11 +0900
Committed by
Shota FUJI
Committed at
2025-06-07 15:03:25 +0900
Signature
View
Object name
6bc46b5123a2ef40cb6797bd00d59dddcb93bef5
Parent
f8c96337
Tab width
1
2
3
4
6
8
12
Changing tab width requires JavaScript enabled.