From e991ae384869dc6c0e149b7c271820e465624bcc Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sat, 2 May 2020 21:29:16 +0000 Subject: [PATCH] --- source/Plugins/AyaNova.Plugin.V8/V8.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index faca659..d2cc4ac 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -472,7 +472,7 @@ namespace AyaNova.PlugIn.V8 var creator = Map[c.Creator]; var modifier = Map[c.Modifier]; - await util.EventLog(3, newId, creator, modifier, c.Created, c.Modified); + await util.EventLog((int)util.AyaType.User, newId, creator, modifier, c.Created, c.Modified); } } @@ -540,7 +540,7 @@ namespace AyaNova.PlugIn.V8 } //Event log fixup - await util.EventLog(8, RavenId, SafeGetUserMap(c.Creator), SafeGetUserMap(c.Modifier), c.Created, c.Modified); + await util.EventLog((int)util.AyaType.Customer, RavenId, SafeGetUserMap(c.Creator), SafeGetUserMap(c.Modifier), c.Created, c.Modified); } }