You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After this line external resource request url is incorrect. If we download some internal web page, then urls for resources builds as relative to full url instead of base url. This fixes the issue:
Issue in ASIWebPageRequest.m
Line: 270 - ASIWebPageRequest *externalResourceRequest = [ASIWebPageRequest requestWithURL:[NSURL URLWithString:theURL relativeToURL:[self url]]];
After this line external resource request url is incorrect. If we download some internal web page, then urls for resources builds as relative to full url instead of base url. This fixes the issue:
ASIWebPageRequest *externalResourceRequest = [ASIWebPageRequest requestWithURL:[NSURL URLWithString:theURL relativeToURL:[[self url] baseURL]]];
Is it a correct solution or something missing?
The text was updated successfully, but these errors were encountered: