Variable hasnt to be mutable
This commit is contained in:
parent
cae605d21b
commit
cf77c51afb
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ impl Runtime {
|
|||
.map_err_into(GHEK::ConfigError)
|
||||
.map_err(Box::new)
|
||||
.map_err(|e| HEK::HookExecutionError.into_error_with_cause(e))
|
||||
.map_err(|mut e| e.with_custom_data(CustomData::default().aborting(false)))
|
||||
.map_err(|e| e.with_custom_data(CustomData::default().aborting(false)))
|
||||
.map_dbg_err(|_| {
|
||||
format!("[GIT {} HOOK]: Couldn't get Value object from config", action.uppercase())
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue