From 8c4ab1e95ce6725c288025cf3fed0af658d94bda Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 6 Oct 2021 22:25:27 +0000 Subject: [PATCH] removed uicolor from User migrate --- 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 c1ac250..908133f 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -814,7 +814,7 @@ namespace AyaNova.PlugIn.V8 var rOptions = await util.GetAsync("user-option/" + RavenId.ToString()); d = rOptions.ObjectResponse["data"]; - d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); + // d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); d.emailAddress = string.IsNullOrWhiteSpace(c.EmailAddress) ? null : c.EmailAddress; d.phone1 = c.Phone1; d.phone2 = c.Phone2; @@ -996,7 +996,7 @@ namespace AyaNova.PlugIn.V8 var rOptions = await util.GetAsync("user-option/" + RavenId.ToString()); d = rOptions.ObjectResponse["data"]; - d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); + //d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); d.emailAddress = string.IsNullOrWhiteSpace(c.EmailAddress) ? null : c.EmailAddress; d.phone1 = c.Phone1; d.phone2 = c.Phone2;