Daniel García
6 years ago
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A
1 changed files with
3 additions and
1 deletions
-
src/api/identity.rs
|
|
@ -106,7 +106,9 @@ fn _password_login(data: ConnectData, conn: DbConn, ip: ClientIp) -> JsonResult |
|
|
|
let twofactor_token = twofactor_auth(&user.uuid, &data, &mut device, &conn)?; |
|
|
|
|
|
|
|
if CONFIG.mail_enabled() && new_device { |
|
|
|
mail::send_new_device_logged_in(&user.email, &ip.ip.to_string(), &device.updated_at, &device.name)? |
|
|
|
if let Err(e) = mail::send_new_device_logged_in(&user.email, &ip.ip.to_string(), &device.updated_at, &device.name) { |
|
|
|
error!("Error sending new device email: {:#?}", e); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Common
|
|
|
|