diff options
author | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2019-04-13 11:22:15 -0400 |
---|---|---|
committer | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2019-04-13 11:37:45 -0400 |
commit | 8757548a3e5b5cc4d159d61eb4a12c7af1be548e (patch) | |
tree | 3ad7d1f2c10d3d4c7a5d3779b2ee55cde34cfce6 /toolkit/modules/PermissionsUtils.jsm | |
parent | 714e9c9074d9eb2f4063962d07bae6b4f02a1e7a (diff) | |
download | UXP-8757548a3e5b5cc4d159d61eb4a12c7af1be548e.tar UXP-8757548a3e5b5cc4d159d61eb4a12c7af1be548e.tar.gz UXP-8757548a3e5b5cc4d159d61eb4a12c7af1be548e.tar.lz UXP-8757548a3e5b5cc4d159d61eb4a12c7af1be548e.tar.xz UXP-8757548a3e5b5cc4d159d61eb4a12c7af1be548e.zip |
Issue #991 Part 8: Toolkit everything else
Diffstat (limited to 'toolkit/modules/PermissionsUtils.jsm')
-rw-r--r-- | toolkit/modules/PermissionsUtils.jsm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/toolkit/modules/PermissionsUtils.jsm b/toolkit/modules/PermissionsUtils.jsm index dfed76f0c..4bf43a3ec 100644 --- a/toolkit/modules/PermissionsUtils.jsm +++ b/toolkit/modules/PermissionsUtils.jsm @@ -16,10 +16,7 @@ function importPrefBranch(aPrefBranch, aPermission, aAction) { let list = Services.prefs.getChildList(aPrefBranch, {}); for (let pref of list) { - let origins = ""; - try { - origins = Services.prefs.getCharPref(pref); - } catch (e) {} + let origins = Services.prefs.getCharPref(pref, ""); if (!origins) continue; |