fix bug gateway-api

This commit is contained in:
etreschenkov 2024-10-16 18:57:53 +03:00
parent 46cf5f0bf8
commit 620370c9eb

View file

@ -26,7 +26,7 @@ public class TkrService {
if (tkrRequest.getErrors() != null && !tkrRequest.getErrors().isEmpty()) {
return;
}
if (tkrRequest.getInfoAccount().isEmpty()) {
if (tkrRequest.getInfoAccount() == null || tkrRequest.getInfoAccount().isEmpty()) {
return;
}
List<TkrAccount> tkrAccountsForCheck = tkrRequest.getInfoAccount()