mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
handle year in name when searching
This commit is contained in:
parent
58a46171ab
commit
a4b40ad9d9
21 changed files with 2761 additions and 227 deletions
|
|
@ -292,7 +292,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
|
|||
|
||||
StatusCode = httpResponse.StatusCode,
|
||||
|
||||
ContentType = httpResponse.ContentType
|
||||
ContentType = httpResponse.ContentType,
|
||||
|
||||
Headers = httpResponse.Headers
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -318,7 +320,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
|
|||
|
||||
StatusCode = httpResponse.StatusCode,
|
||||
|
||||
ContentType = httpResponse.ContentType
|
||||
ContentType = httpResponse.ContentType,
|
||||
|
||||
Headers = httpResponse.Headers
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
@ -495,7 +499,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
|
|||
|
||||
StatusCode = httpResponse.StatusCode,
|
||||
|
||||
ContentType = httpResponse.ContentType
|
||||
ContentType = httpResponse.ContentType,
|
||||
|
||||
Headers = httpResponse.Headers
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue