Fixing Memory Leak When Importing a Site

pull/382/head
s vignesh 2016-09-15 10:33:55 +05:30 committed by Jordan Wright
parent bfb7fd11e8
commit 208b3e098c
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ func API_Import_Site(w http.ResponseWriter, r *http.Request) {
return
}
// Insert the base href tag to better handle relative resources
d, err := goquery.NewDocumentFromReader(resp.Body)
d, err := goquery.NewDocumentFromResponse(resp)
if err != nil {
JSONResponse(w, models.Response{Success: false, Message: err.Error()}, http.StatusBadRequest)
return