@@ -159,7 +159,7 @@ impl crate::Repository {
159
159
Ok ( match head. inner . target {
160
160
Target :: Symbolic ( branch) => match self . find_reference ( & branch) {
161
161
Ok ( r) => crate :: head:: Kind :: Symbolic ( r. detach ( ) ) ,
162
- Err ( reference:: find:: existing:: Error :: NotFound ) => crate :: head:: Kind :: Unborn ( branch) ,
162
+ Err ( reference:: find:: existing:: Error :: NotFound { .. } ) => crate :: head:: Kind :: Unborn ( branch) ,
163
163
Err ( err) => return Err ( err) ,
164
164
} ,
165
165
Target :: Object ( target) => crate :: head:: Kind :: Detached {
@@ -222,11 +222,19 @@ impl crate::Repository {
222
222
/// without that being considered an error.
223
223
pub fn find_reference < ' a , Name , E > ( & self , name : Name ) -> Result < Reference < ' _ > , reference:: find:: existing:: Error >
224
224
where
225
- Name : TryInto < & ' a PartialNameRef , Error = E > ,
225
+ Name : TryInto < & ' a PartialNameRef , Error = E > + Clone ,
226
226
gix_ref:: file:: find:: Error : From < E > ,
227
227
{
228
+ // TODO: is there a way to just pass `partial_name` to `try_find_reference()`? Compiler freaks out then
229
+ // as it still wants to see `E` there, not `Infallible`.
230
+ let partial_name = name
231
+ . clone ( )
232
+ . try_into ( )
233
+ . map_err ( |err| reference:: find:: Error :: Find ( gix_ref:: file:: find:: Error :: from ( err) ) ) ?;
228
234
self . try_find_reference ( name) ?
229
- . ok_or ( reference:: find:: existing:: Error :: NotFound )
235
+ . ok_or_else ( || reference:: find:: existing:: Error :: NotFound {
236
+ name : partial_name. to_owned ( ) ,
237
+ } )
230
238
}
231
239
232
240
/// Return a platform for iterating references.
@@ -249,8 +257,7 @@ impl crate::Repository {
249
257
Name : TryInto < & ' a PartialNameRef , Error = E > ,
250
258
gix_ref:: file:: find:: Error : From < E > ,
251
259
{
252
- let state = self ;
253
- match state. refs . try_find ( name) {
260
+ match self . refs . try_find ( name) {
254
261
Ok ( r) => match r {
255
262
Some ( r) => Ok ( Some ( Reference :: from_ref ( r, self ) ) ) ,
256
263
None => Ok ( None ) ,
0 commit comments