bug fix
This commit is contained in:
parent
7947df3a3a
commit
6583c6d07a
|
@ -122,7 +122,7 @@ public class NotifyIntegrationEventHandlerImpl implements NotifyIntegrationEvent
|
|||
notificationService.persist(model, new BaseFieldSet());
|
||||
|
||||
auditService.track(AuditableAction.Notification_Persist, Map.ofEntries(
|
||||
new AbstractMap.SimpleEntry<String, Object>("id", event.getUserId())
|
||||
new AbstractMap.SimpleEntry<String, Object>("id", event.getUserId() != null ? event.getUserId() : event.getContactHint())
|
||||
));
|
||||
} catch (Exception ex) {
|
||||
status = EventProcessingStatus.Error;
|
||||
|
|
Loading…
Reference in New Issue