We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67aea17 commit bb66ae1Copy full SHA for bb66ae1
src/main/java/com/uid2/shared/audit/Audit.java
@@ -211,8 +211,7 @@ private boolean validateId(String uidId, String propertyName) {
211
}
212
213
private String getLogIdentifier(JsonObject logObject) {
214
- JsonObject actor = logObject.getJsonObject("actor");
215
- String email = (actor != null) ? actor.getString("email") : null;
+ String email = (this.actor != null) ? this.actor.getString("email") : null;
216
if (email != null && !email.isEmpty()) {
217
return email;
218
0 commit comments