Răsfoiți Sursa

Implement DeleteDevice

Patrick Barron 4 ani în urmă
părinte
comite
67308f489f

+ 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 />