Fixed a problem when saving imported Categorizations

deploy_packages_to_gitea
Jens Pelzetter 2022-11-05 20:06:36 +01:00
parent caaedc323e
commit 161eff594d
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public class CategorizationImExporter
@Override @Override
@Transactional(Transactional.TxType.REQUIRED) @Transactional(Transactional.TxType.REQUIRED)
protected void saveImportedEntity(final Categorization entity) { protected void saveImportedEntity(final Categorization entity) {
entityManager.persist(entity); entityManager.merge(entity);
} }
@Override @Override