mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Trim trailing spaces from string values in advanced settings
This commit is contained in:
parent
123b939944
commit
68e1b58bb6
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ self.addEventListener('hiddenSettingsChanged', ( ) => {
|
|||
}
|
||||
break;
|
||||
case 'string':
|
||||
out[name] = value;
|
||||
out[name] = value.trim();
|
||||
break;
|
||||
case 'number':
|
||||
out[name] = parseInt(value, 10);
|
||||
|
|
|
|||
Loading…
Reference in a new issue