diff options
| author | crobibero <cody@robibe.ro> | 2020-11-20 10:22:40 -0700 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-11-20 10:22:40 -0700 |
| commit | 2f75f84b6f7d21e9337ee597f8367266a13a27a6 (patch) | |
| tree | 1ed95dcbefa5679cf328ccbc3b53ac5f26146062 /Jellyfin.Server/Startup.cs | |
| parent | de2f4967d1973d58e46a41104cef01773e1692c8 (diff) | |
Fix marking item as played
Diffstat (limited to 'Jellyfin.Server/Startup.cs')
| -rw-r--r-- | Jellyfin.Server/Startup.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Jellyfin.Server/Startup.cs b/Jellyfin.Server/Startup.cs index 62ffe174c..2a62339a6 100644 --- a/Jellyfin.Server/Startup.cs +++ b/Jellyfin.Server/Startup.cs @@ -1,8 +1,5 @@ -using System; -using System.ComponentModel; using System.Net.Http.Headers; using System.Net.Mime; -using Jellyfin.Api.TypeConverters; using Jellyfin.Server.Extensions; using Jellyfin.Server.Implementations; using Jellyfin.Server.Middleware; @@ -164,9 +161,6 @@ namespace Jellyfin.Server endpoints.MapHealthChecks("/health"); }); }); - - // Add type descriptor for legacy datetime parsing. - TypeDescriptor.AddAttributes(typeof(DateTime?), new TypeConverterAttribute(typeof(DateTimeTypeConverter))); } } } |
