From aa4e9ba2ca909232d839bf55a949d680562c4411 Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Mon, 12 Aug 2013 20:53:24 -0300 Subject: [PATCH] Bug 903533 - Fix webapps directory creation on Linux. r=felipe --- toolkit/webapps/WebappsInstaller.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/webapps/WebappsInstaller.jsm b/toolkit/webapps/WebappsInstaller.jsm index 6c15f474606..066d2a01d95 100644 --- a/toolkit/webapps/WebappsInstaller.jsm +++ b/toolkit/webapps/WebappsInstaller.jsm @@ -827,7 +827,7 @@ LinuxNativeApp.prototype = { .getService(Ci.nsIToolkitProfileService); try { - this.appProfile = profSvc.createDefaultProfileForApp(this.installDir.leafName, + this.appProfile = profSvc.createDefaultProfileForApp(this.uniqueName, null, null); } catch (ex if ex.result == Cr.NS_ERROR_ALREADY_INITIALIZED) {} },