mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
Update projects to .NET 9 (#13023)
This commit is contained in:
@@ -457,7 +457,7 @@ public class ItemUpdateController : BaseJellyfinApiController
|
||||
return null;
|
||||
}
|
||||
|
||||
return (SeriesStatus)Enum.Parse(typeof(SeriesStatus), item.Status, true);
|
||||
return Enum.Parse<SeriesStatus>(item.Status, true);
|
||||
}
|
||||
|
||||
private DateTime NormalizeDateTime(DateTime val)
|
||||
|
||||
Reference in New Issue
Block a user