Browse Source

Merge pull request #248 from ssmaurya/master

Fix for error during customer description update
pull/252/head
Igor Kulikov 9 years ago
committed by GitHub
parent
commit
41d34fe4a4
  1. 2
      dao/src/main/java/org/thingsboard/server/dao/customer/CustomerServiceImpl.java

2
dao/src/main/java/org/thingsboard/server/dao/customer/CustomerServiceImpl.java

@ -154,7 +154,7 @@ public class CustomerServiceImpl extends AbstractEntityService implements Custom
protected void validateUpdate(Customer customer) {
customerDao.findCustomersByTenantIdAndTitle(customer.getTenantId().getId(), customer.getTitle()).ifPresent(
c -> {
if (!c.getId().equals(customer.getUuidId())) {
if (!c.getId().equals(customer.getId())) {
throw new DataValidationException("Customer with such title already exists!");
}
}

Loading…
Cancel
Save