summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-06-02 09:44:59 +0000
committerMoonchild <moonchild@palemoon.org>2021-06-02 09:44:59 +0000
commitce71c0fe3f7db1fa1f054d689b7237f36d6d8266 (patch)
treeb66f52690542b32f0cbeab4eaa7424cf22c462e3
parent42cf1ad41939acb43c4e9bfe1fd8e0b51e5ae440 (diff)
downloaduxp-ce71c0fe3f7db1fa1f054d689b7237f36d6d8266.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.jsm1
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/,
];