fix: remove nonsense skipValue call in symbol tags handling

closes #454
This commit is contained in:
CJ van den Berg 2026-01-12 17:03:03 +01:00
parent cf3648ce80
commit eb1b0b7b7a
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -1415,7 +1415,6 @@ fn send_symbol_information(to: tp.pid_ref, file_path: []const u8, item: []const
tags[idx] = this_tag; tags[idx] = this_tag;
idx += 1; idx += 1;
} }
try cbor.skipValue(&iter);
} else if (std.mem.eql(u8, field_name, "deprecated")) { } else if (std.mem.eql(u8, field_name, "deprecated")) {
if (!(try cbor.matchValue(&iter, cbor.extract(&deprecated)))) return invalid_symbol_information_field("deprecated"); if (!(try cbor.matchValue(&iter, cbor.extract(&deprecated)))) return invalid_symbol_information_field("deprecated");
} else if (std.mem.eql(u8, field_name, "range")) { } else if (std.mem.eql(u8, field_name, "range")) {