bug 311195 - When update URL is 404, engine update ignores updateCheckDays, patch by O. Atsushi (Torisugari) (torisugari@gmail.com), r=me, sr=neil, a=asa

git-svn-id: svn://10.0.0.236/trunk@182388 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mconnor%steelgryphon.com
2005-10-17 17:37:24 +00:00
parent 149f1c0f7f
commit 0503dbb591

View File

@@ -5191,6 +5191,11 @@ InternetSearchDataSource::OnStopRequest(nsIRequest *request, nsISupports *ctxt,
busySchedule = PR_FALSE;
busyResource = nsnull;
// mark now as the last time we stat'ted the search engine
// regardless of HTTP status
rv = validateEngineNow(theEngine);
NS_ENSURE_SUCCESS(rv, rv);
// we only have HTTP "HEAD" information when doing updates
nsCOMPtr<nsIHttpChannel> httpChannel (do_QueryInterface(channel));
if (!httpChannel) return(NS_ERROR_UNEXPECTED);
@@ -5268,9 +5273,6 @@ InternetSearchDataSource::OnStopRequest(nsIRequest *request, nsISupports *ctxt,
}
}
// mark now as the last time we stat'ted the search engine
validateEngineNow(theEngine);
if (updateSearchEngineFile)
{
#ifdef DEBUG_SEARCH_UPDATES