aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-11-02 17:56:12 -0600
committerCody Robibero <cody@robibe.ro>2021-11-02 17:56:12 -0600
commitf444e93a56f6613baa8a722099159f2935d4d942 (patch)
treeacfbf75b9530c4298e2159d69d06c96984c368be /Jellyfin.Api
parentf4844c08a523ea8879cb3abbc24c23b9a924dc9e (diff)
parent2c42d75288a57c2961f257a7619e286702f4ac79 (diff)
Merge remote-tracking branch 'upstream/master' into client-logger
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();
}
}