aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/DlnaController.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-11-01 17:19:43 +0100
committerGitHub <noreply@github.com>2021-11-01 17:19:43 +0100
commit76eeb8f655424d295e73ced8349c6fefee6ddb12 (patch)
treee1b1bd603b011ca98e5793e356326bf4a35a7050 /Jellyfin.Api/Controllers/DlnaController.cs
parente8efc433fa8c7ed917ae8d9b42440a6a0812d62a (diff)
parent2f6437a987423bf75a32bf7112f596f6cfa242ec (diff)
Merge pull request #6745 from crobibero/dlna-profile-save
Use correct id when finding existing dlna profile
Diffstat (limited to 'Jellyfin.Api/Controllers/DlnaController.cs')
-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();
}
}