mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-03-06 13:44:58 +00:00
Fix UtcConverter - already UTC back from DB
This commit is contained in:
@@ -15,7 +15,7 @@ namespace NzbDrone.Core.Datastore.Converters
|
||||
|
||||
public override DateTime Parse(object value)
|
||||
{
|
||||
return DateTime.SpecifyKind((DateTime)value, DateTimeKind.Utc);
|
||||
return (DateTime)value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user