Found issue with XMLserialization using local time to serialize instead of UTC. Changed to be consistent with rest of project.
This commit is contained in:
parent
1a5ec1b996
commit
06fa2ab343
6 changed files with 8 additions and 8 deletions
|
|
@ -541,7 +541,7 @@ namespace Server
|
|||
{
|
||||
try
|
||||
{
|
||||
return XmlConvert.ToDateTime( dateTimeString, XmlDateTimeSerializationMode.Local );
|
||||
return XmlConvert.ToDateTime( dateTimeString, XmlDateTimeSerializationMode.Utc );
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue