diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-04-03 20:59:38 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-04-03 20:59:38 +0200 |
| commit | 8e7b15285ec8a513d9c94d688f864e3203304bc3 (patch) | |
| tree | 797bb93601b6e25c850490f31f1966f2594cf1bc /Emby.Server.Implementations/Data/SqliteExtensions.cs | |
| parent | a37b69a49387f32b47764bd9bfa49ca791c01014 (diff) | |
Clean up SqliteItemRepository
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteExtensions.cs')
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteExtensions.cs b/Emby.Server.Implementations/Data/SqliteExtensions.cs index c87793072..e7c5270b9 100644 --- a/Emby.Server.Implementations/Data/SqliteExtensions.cs +++ b/Emby.Server.Implementations/Data/SqliteExtensions.cs @@ -287,7 +287,7 @@ namespace Emby.Server.Implementations.Data } } - public static void TryBind(this IStatement statement, string name, byte[] value) + public static void TryBind(this IStatement statement, string name, ReadOnlySpan<byte> value) { if (statement.BindParameters.TryGetValue(name, out IBindParameter bindParam)) { |
