Skip to content

Commit

Permalink
LPD-25594 Fix due to FF
Browse files Browse the repository at this point in the history
  • Loading branch information
brbalazs authored and brianchandotcom committed May 16, 2024
1 parent 9b9cb52 commit 8336b3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,6 @@ public Account putAccount(Long accountId, Account account)
_accountEntryUserRelLocalService.setAccountEntryUserRels(
accountId, _getAccountUserAccountIds(account));

_addAddresses(accountId, account);

AccountEntry accountEntry = _accountEntryService.updateAccountEntry(
accountId, _getParentAccountId(account), account.getName(),
account.getDescription(), _isDeleteLogo(account, null),
Expand Down Expand Up @@ -565,6 +563,8 @@ accountId, _getParentAccountId(account), account.getName(),
}
}

_addAddresses(accountId, account);

return _toAccount(accountEntry);
}

Expand Down

0 comments on commit 8336b3b

Please sign in to comment.