diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-10-15 15:35:37 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-15 15:35:37 +0300 |
| commit | 0ccbc2f37444d7deb7981a1e6ac2fafc1a518750 (patch) | |
| tree | 51c34ea3b45e913998f3cb4d1510030cf4f52d3b /Emby.Server.Implementations/Data/SqliteExtensions.cs | |
| parent | c9851db4c713db3a5fa2076dc0fb5b5be72b5989 (diff) | |
| parent | 516933aab58eb668d8db20307cd25d6532bd198c (diff) | |
Merge pull request #1884 from Bond-009/netcore3.0
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) |
