diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-14 15:27:35 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-14 15:27:35 -0400 |
| commit | d5cf6d59a30cc989d7e33c6eb6ac378e6339b2f3 (patch) | |
| tree | 3158c270e2d85f890a88e5a69ccb6ddd74b31a5c | |
| parent | 0788f435c185e6e5fa63b439d1e8d08e5ad89e13 (diff) | |
Fixed copy/paste typo
| -rw-r--r-- | MediaBrowser.ApiInteraction/ApiClient.cs | 2 |
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)
{
|
