Merge branch 'v5-develop' of https://github.com/turbo124/invoiceninja into v5-develop

This commit is contained in:
David Bomba
2026-01-21 14:50:18 +11:00
3 changed files with 7 additions and 12 deletions

View File

@@ -56,6 +56,8 @@ class UpdateUserRequest extends Request
$input['email'] = trim($input['email']);
} elseif (isset($input['email'])) {
$input['email'] = false;
} else {
$input['email'] = $this->user->email;
}
if (array_key_exists('first_name', $input)) {

View File

@@ -204,6 +204,10 @@ class StorecoveExpense
$id_number = $pi->getId();
} elseif ($ident == 'routing_id') {
$routing_id = $pi->getId();
} else{
//Sometimes some very unusual identifiers are returned, we should always skip these.
// ie. IBAN, etc.
continue;
}
}
}