mwrock / RequestReduce

Instantly makes your .net website faster by reducing the number and size of requests with almost no effort.
www.requestreduce.org
Apache License 2.0
228 stars 49 forks source link

CssReducer replaces hostname of parent URL when expanding imports #246

Open greg84 opened 11 years ago

greg84 commented 11 years ago

There is an issue with line 95 in CssReducer.cs:

var absoluteUrl = relativeToAbsoluteUtility.ToAbsolute(parentUrl, url);

It should be this:

var absoluteUrl = relativeToAbsoluteUtility.ToAbsolute(parentUrl, url, false);

Otherwise the content host will replace the hostname of the parent URL.