aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-10-31 08:49:24 -0600
committerCody Robibero <cody@robibe.ro>2021-10-31 08:49:24 -0600
commit2f6437a987423bf75a32bf7112f596f6cfa242ec (patch)
tree8349ae6cc6917df2aa63508dccabc8f17dd0e236 /Jellyfin.Api
parent5a7433472ef88c7e8e52840425a7296e242155ee (diff)
Use correct id when finding existing dlna profile
Diffstat (limited to 'Jellyfin.Api')
-rw-r--r--Jellyfin.Api/Controllers/DlnaController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/DlnaController.cs b/Jellyfin.Api/Controllers/DlnaController.cs
index 052a6aff2..35c3a3d92 100644
--- a/Jellyfin.Api/Controllers/DlnaController.cs
+++ b/Jellyfin.Api/Controllers/DlnaController.cs
@@ -126,7 +126,7 @@ namespace Jellyfin.Api.Controllers
return NotFound();
}
- _dlnaManager.UpdateProfile(deviceProfile);
+ _dlnaManager.UpdateProfile(profileId, deviceProfile);
return NoContent();
}
}