Skip to content

Commit

Permalink
Fix Spec.toml again
Browse files Browse the repository at this point in the history
  • Loading branch information
goffrie committed Feb 12, 2024
1 parent 8fca3db commit 52606b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pb-jelly-gen/src/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2248,7 +2248,7 @@ impl<'a> Context<'a> {
extra_crates
.entry(crate_.to_string())
.or_default()
.extend(CRATE_NAME_REGEX.find_iter(&custom_type).map(|m| m.as_str().to_owned()));
.extend(CRATE_NAME_REGEX.captures_iter(&custom_type).map(|m| m[1].to_owned()));
may_use_grpc_slices = true;
}

Expand Down

0 comments on commit 52606b3

Please sign in to comment.