1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Fix incorrect redaction of user filterset

Related feedback:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1541#issuecomment-966543580
This commit is contained in:
Raymond Hill 2021-11-11 14:06:59 -05:00
parent 6e7b08c1df
commit d142066f95
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -35,7 +35,7 @@ const uselessKeys = [
];
const sensitiveValues = [
'filterset',
'filterset (user)',
'modifiedUserSettings.popupPanelSections',
'modifiedHiddenSettings.userResourcesLocation',
'trustedset.added',
@ -184,23 +184,23 @@ function reportSpecificFilterType() {
function reportSpecificFilterIssue(ev) {
const bodyTemplate = [
'### Address of the web page',
'## Address of the web page',
'',
'`{{url}}`',
'',
'### Type of issue',
'## Type of issue',
'',
'{{type}}',
'',
'### Description (when issue is not obvious)',
'## Description (when issue is not obvious)',
'',
'[none]',
'',
'### Screenshot (when description is difficult)',
'## Screenshot (when description is difficult)',
'',
'[none]',
'',
'### Configuration',
'## Configuration',
'',
'{{configuration}}',
].join('\n');