2
0
Эх сурвалжийг харах

Use ExecuteSqlInterpolated instead of ExecuteSqlRaw
oop

Patrick Barron 4 жил өмнө
parent
commit
54fdc2fd88

+ 1 - 1
Jellyfin.Server.Implementations/Devices/DeviceManager.cs

@@ -50,7 +50,7 @@ namespace Jellyfin.Server.Implementations.Devices
         {
         {
             await using var dbContext = _dbProvider.CreateContext();
             await using var dbContext = _dbProvider.CreateContext();
             await dbContext.Database
             await dbContext.Database
-                .ExecuteSqlRawAsync($"UPDATE [DeviceOptions] SET [CustomName] = ${options.CustomName}")
+                .ExecuteSqlInterpolatedAsync($"UPDATE [DeviceOptions] SET [CustomName] = {options.CustomName}")
                 .ConfigureAwait(false);
                 .ConfigureAwait(false);
 
 
             DeviceOptionsUpdated?.Invoke(this, new GenericEventArgs<Tuple<string, DeviceOptions>>(new Tuple<string, DeviceOptions>(deviceId, options)));
             DeviceOptionsUpdated?.Invoke(this, new GenericEventArgs<Tuple<string, DeviceOptions>>(new Tuple<string, DeviceOptions>(deviceId, options)));