Browse Source

Fixed copy/paste typo

LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent
commit
d5cf6d59a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.ApiInteraction/ApiClient.cs

+ 1 - 1
MediaBrowser.ApiInteraction/ApiClient.cs

@@ -227,7 +227,7 @@ namespace MediaBrowser.ApiInteraction
         /// </summary>
         /// </summary>
         public async Task<IEnumerable<ApiBaseItemWrapper<ApiBaseItem>>> GetItemsWithPersonAsync(string name, PersonType? personType, Guid userId)
         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)
             if (personType.HasValue)
             {
             {