Skip to content
Snippets Groups Projects
Commit 333cd83d authored by Michael Simon's avatar Michael Simon
Browse files

Don't audit field change from null to null

parent 4fc92030
No related branches found
No related tags found
No related merge requests found
......@@ -453,6 +453,11 @@ public class UserUpdater implements Serializable {
return false;
}
if (actualValue == null && value == null) {
// Value stayed null
return false;
}
if (actualValue == null) {
s = "null";
action = "SET FIELD";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment