diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-10-11 18:22:29 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-10-11 18:32:13 +0200 |
| commit | 516933aab58eb668d8db20307cd25d6532bd198c (patch) | |
| tree | dcde956a2181777ab7fc97a23f6879750d22607c /Emby.Server.Implementations/Data/SqliteExtensions.cs | |
| parent | d64b43286ecf9418280d5a782826182cc2ef98e4 (diff) | |
Move to netcore3.0
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteExtensions.cs')
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteExtensions.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteExtensions.cs b/Emby.Server.Implementations/Data/SqliteExtensions.cs index 0fb2c10fd..e7c394b54 100644 --- a/Emby.Server.Implementations/Data/SqliteExtensions.cs +++ b/Emby.Server.Implementations/Data/SqliteExtensions.cs @@ -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) |
