Commit e2b6cb71 authored by Ehsan Akhgari's avatar Ehsan Akhgari
Browse files

Bug 463885 - Entering the Private Browsing mode may not always empty the...

Bug 463885 - Entering the Private Browsing mode may not always empty the download manager list; r=sdwilsh, a=blocking1.9.1+
parent 917479f3
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -504,8 +504,14 @@ let gDownloadObserver = {
        break;
      case "private-browsing":
        if (aData == "enter" || aData == "exit") {
          // We might get this notification before the download manager
          // service, so the new database connection might not be ready
          // yet.  Defer this until all private-browsing notifications
          // have been processed.
          setTimeout(function() {
            initStatement();
            buildDownloadList(true);
          }, 0);
        }
        break;
    }