mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
handle year in name when searching
This commit is contained in:
@@ -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
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user