Use correct id when finding existing dlna profile

This commit is contained in:
Cody Robibero
2021-10-31 08:49:24 -06:00
parent 5a7433472e
commit 2f6437a987
3 changed files with 5 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ namespace Jellyfin.Api.Controllers
return NotFound();
}
_dlnaManager.UpdateProfile(deviceProfile);
_dlnaManager.UpdateProfile(profileId, deviceProfile);
return NoContent();
}
}