Explorar el Código

Implement DeleteDevice

Patrick Barron hace 4 años
padre
commit
67308f489f
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      Jellyfin.Server.Implementations/Devices/DeviceManager.cs

+ 2 - 0
Jellyfin.Server.Implementations/Devices/DeviceManager.cs

@@ -194,6 +194,8 @@ namespace Jellyfin.Server.Implementations.Devices
         public async Task DeleteDevice(Device device)
         {
             await using var dbContext = _dbProvider.CreateContext();
+            dbContext.Devices.Remove(device);
+            await dbContext.SaveChangesAsync().ConfigureAwait(false);
         }
 
         /// <inheritdoc />