mirror of
https://github.com/Readarr/Readarr
synced 2026-02-22 14:43:14 +01:00
Fix UtcConverter - already UTC back from DB
This commit is contained in:
parent
45d49117ca
commit
46b1c933a3
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ public override void SetValue(IDbDataParameter parameter, DateTime value)
|
|||
|
||||
public override DateTime Parse(object value)
|
||||
{
|
||||
return DateTime.SpecifyKind((DateTime)value, DateTimeKind.Utc);
|
||||
return (DateTime)value;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue