소스 검색

Fixed copy/paste typo

LukePulverenti Luke Pulverenti luke pulverenti 13 년 전
부모
커밋
d5cf6d59a3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.ApiInteraction/ApiClient.cs

+ 1 - 1
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)
             {