Skip to content

Commit

Permalink
Fixed missing channel in some audit records (e.g. execute changes raw)
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed May 18, 2017
1 parent 9281677 commit 650b785
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -158,8 +158,8 @@ private void completeRecord(AuditEventRecord record, Task task) {
if (record.getTaskOID() == null && task != null) {
record.setTaskOID(task.getOid());
}
if (record.getTaskOID() == null && task != null) {
record.setTaskOID(task.getOid());
if (record.getChannel() == null && task != null) {
record.setChannel(task.getChannel());
}
if (record.getInitiator() == null && task != null) {
record.setInitiator(task.getOwner());
Expand Down

0 comments on commit 650b785

Please sign in to comment.