diff options
author | Moonchild <moonchild@palemoon.org> | 2021-06-02 09:44:59 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-06-02 09:44:59 +0000 |
commit | c6bffce0fab456faa4c5b32b727f0656ad007f2d (patch) | |
tree | b66f52690542b32f0cbeab4eaa7424cf22c462e3 | |
parent | d792016777d955573b0e11d5971d27b2abe35c5e (diff) | |
download | uxp-c6bffce0fab456faa4c5b32b727f0656ad007f2d.tar.gz |
[toolkit] Exclude printer spew from troubleshooting information.
In almost all cases this is pointless to include, a ton of useless entries,
and there's no reason to have people post a full enumeration of installed
printers on their system when asked for TS information.
If there's a printer specific issue, people can always be asked to post relevant
info manually.
-rw-r--r-- | toolkit/modules/Troubleshoot.jsm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolkit/modules/Troubleshoot.jsm b/toolkit/modules/Troubleshoot.jsm index 6ee6cb54e5..8ff6be30ba 100644 --- a/toolkit/modules/Troubleshoot.jsm +++ b/toolkit/modules/Troubleshoot.jsm @@ -96,6 +96,7 @@ const PREFS_WHITELIST = [ const PREFS_BLACKLIST = [ /^network[.]proxy[.]/, /[.]print_to_filename$/, + /^print[.]printer_/, /^print[.]macosx[.]pagesetup/, ]; |