mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Use ExecuteSqlInterpolated instead of ExecuteSqlRaw
oop
This commit is contained in:
parent
be88efce3c
commit
54fdc2fd88
@ -50,7 +50,7 @@ namespace Jellyfin.Server.Implementations.Devices
|
||||
{
|
||||
await using var dbContext = _dbProvider.CreateContext();
|
||||
await dbContext.Database
|
||||
.ExecuteSqlRawAsync($"UPDATE [DeviceOptions] SET [CustomName] = ${options.CustomName}")
|
||||
.ExecuteSqlInterpolatedAsync($"UPDATE [DeviceOptions] SET [CustomName] = {options.CustomName}")
|
||||
.ConfigureAwait(false);
|
||||
|
||||
DeviceOptionsUpdated?.Invoke(this, new GenericEventArgs<Tuple<string, DeviceOptions>>(new Tuple<string, DeviceOptions>(deviceId, options)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user