aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.ApiInteraction/ApiClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.ApiInteraction/ApiClient.cs b/MediaBrowser.ApiInteraction/ApiClient.cs
index d1c9edf73..5685638f6 100644
--- a/MediaBrowser.ApiInteraction/ApiClient.cs
+++ b/MediaBrowser.ApiInteraction/ApiClient.cs
@@ -227,7 +227,7 @@ namespace MediaBrowser.ApiInteraction
/// </summary>
public async Task<IEnumerable<ApiBaseItemWrapper<ApiBaseItem>>> GetItemsWithPersonAsync(string name, PersonType? personType, Guid userId)
{
- string url = ApiUrl + "/itemswithgenre?userId=" + userId.ToString() + "&name=" + name;
+ string url = ApiUrl + "/itemswithperson?userId=" + userId.ToString() + "&name=" + name;
if (personType.HasValue)
{