fix: fmt
This commit is contained in:
parent
e6da06ea0d
commit
f60425f2ad
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ async fn update_wolves(config: &Config, db: &Pool<Sqlite>) {
|
||||||
|
|
||||||
async fn update_ldap(config: &Config, db: &Pool<Sqlite>) {
|
async fn update_ldap(config: &Config, db: &Pool<Sqlite>) {
|
||||||
let mut ldap = match LdapConn::new(&config.ldap_host) {
|
let mut ldap = match LdapConn::new(&config.ldap_host) {
|
||||||
Ok(s) => {s}
|
Ok(s) => s,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("{:?}", e);
|
println!("{:?}", e);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue