mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-05 02:53:12 +00:00
git_backend: consistently use CommitId type to look up extra metadata table
This commit is contained in:
parent
78c8dbc8fe
commit
e224044dea
1 changed files with 1 additions and 1 deletions
|
@ -485,7 +485,7 @@ impl Backend for GitBackend {
|
||||||
};
|
};
|
||||||
|
|
||||||
let table = self.cached_extra_metadata_table()?;
|
let table = self.cached_extra_metadata_table()?;
|
||||||
if let Some(extras) = table.get_value(git_commit_id.as_bytes()) {
|
if let Some(extras) = table.get_value(id.as_bytes()) {
|
||||||
deserialize_extras(&mut commit, extras);
|
deserialize_extras(&mut commit, extras);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue