fix bug gateway-api
This commit is contained in:
parent
46cf5f0bf8
commit
620370c9eb
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ public class TkrService {
|
||||||
if (tkrRequest.getErrors() != null && !tkrRequest.getErrors().isEmpty()) {
|
if (tkrRequest.getErrors() != null && !tkrRequest.getErrors().isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (tkrRequest.getInfoAccount().isEmpty()) {
|
if (tkrRequest.getInfoAccount() == null || tkrRequest.getInfoAccount().isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
List<TkrAccount> tkrAccountsForCheck = tkrRequest.getInfoAccount()
|
List<TkrAccount> tkrAccountsForCheck = tkrRequest.getInfoAccount()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue