mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
Move to netcore3.0
This commit is contained in:
parent
d64b43286e
commit
516933aab5
8 changed files with 8 additions and 42 deletions
|
|
@ -34,8 +34,7 @@ namespace Emby.Server.Implementations.Data
|
|||
|
||||
public static Guid ReadGuidFromBlob(this IResultSetValue result)
|
||||
{
|
||||
// TODO: Remove ToArray when upgrading to netstandard2.1
|
||||
return new Guid(result.ToBlob().ToArray());
|
||||
return new Guid(result.ToBlob());
|
||||
}
|
||||
|
||||
public static string ToDateTimeParamValue(this DateTime dateValue)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue