Revert "Only state the stop notification for JSDownloads in nsWebBrowserPersist::EndDownload"

master
Fedor 2020-05-07 14:44:52 +03:00
parent a9e1a524b7
commit 7c52cc8e7f
1 changed files with 1 additions and 3 deletions

View File

@ -2351,18 +2351,16 @@ nsWebBrowserPersist::EndDownload(nsresult aResult)
{ {
mPersistResult = aResult; mPersistResult = aResult;
} }
// mCompleted needs to be set before issuing the stop notification. // mCompleted needs to be set before issuing the stop notification.
// (Bug 1224437) // (Bug 1224437)
mCompleted = true; mCompleted = true;
#ifdef MOZ_JSDOWNLOADS
// State stop notification // State stop notification
if (mProgressListener) { if (mProgressListener) {
mProgressListener->OnStateChange(nullptr, nullptr, mProgressListener->OnStateChange(nullptr, nullptr,
nsIWebProgressListener::STATE_STOP nsIWebProgressListener::STATE_STOP
| nsIWebProgressListener::STATE_IS_NETWORK, mPersistResult); | nsIWebProgressListener::STATE_IS_NETWORK, mPersistResult);
} }
#endif
// Do file cleanup if required // Do file cleanup if required
if (NS_FAILED(aResult) && (mPersistFlags & PERSIST_FLAGS_CLEANUP_ON_FAILURE)) if (NS_FAILED(aResult) && (mPersistFlags & PERSIST_FLAGS_CLEANUP_ON_FAILURE))