TurboPower_IPro: remove leading and trailing spaces of ContentType in TIpHttpDataProvider.CheckURL

git-svn-id: trunk@53994 -
This commit is contained in:
wp 2017-01-24 17:40:39 +00:00
parent df696ddabc
commit d0311c6a2c

View File

@ -132,7 +132,7 @@ begin
{$IF FPC_FULLVERSION > 30000}or FClient.IsRedirect(FClient.ResponseStatusCode){$ENDIF};
if Result then
begin
FContentType := FClient.ResponseHeaders.Values['Content-Type'];
FContentType := AllTrimSpaces(FClient.ResponseHeaders.Values['Content-Type']);
AContentType := FContentType;
end;
finally