From a3f43e823df64307e7b40b0b8da7331f3fdc1cee Mon Sep 17 00:00:00 2001 From: Andrea Marchesini Date: Fri, 13 Oct 2017 08:47:41 +0200 Subject: [PATCH] Bug 1406818 - about:profile uses nsIToolkitProfile.removeInBackground, r=ehsan --- toolkit/content/aboutProfiles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/content/aboutProfiles.js b/toolkit/content/aboutProfiles.js index 53bb54ab9f35..758a8552071b 100644 --- a/toolkit/content/aboutProfiles.js +++ b/toolkit/content/aboutProfiles.js @@ -291,7 +291,7 @@ function removeProfile(profile) { } } - profile.remove(deleteFiles); + profile.removeInBackground(deleteFiles); ProfileService.flush(); refreshUI(); }