Possible fix

This commit is contained in:
Alexander Wagner
2022-02-11 10:31:24 +01:00
parent 3bb6f0ca65
commit 90066eee0c
2 changed files with 5 additions and 5 deletions
@@ -360,7 +360,7 @@ public final class EntityBeanIntercept implements Serializable {
* Return true if the entity should be updated.
*/
public boolean isUpdate() {
return forceUpdate || state == STATE_LOADED;
return forceUpdate || state == STATE_LOADED || state == STATE_REFERENCE;
}
/**