Skip to content

Commit

Permalink
linux: fix string formatting of Firefox configs
Browse files Browse the repository at this point in the history
This commit fixes some configurations being set wrong values to wrong
YAML notation used for string values.
  • Loading branch information
undergroundwires committed Oct 28, 2023
1 parent f8e5f1a commit e775d68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/application/collections/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2911,7 +2911,8 @@ actions:
function: AddFirefoxPrefs
parameters:
prefName: toolkit.telemetry.log.level
jsonValue: 'Fatal'
jsonValue: >-
"Fatal"
-
name: Disable Firefox telemetry log output
recommend: standard
Expand All @@ -2924,7 +2925,8 @@ actions:
function: AddFirefoxPrefs
parameters:
prefName: toolkit.telemetry.log.dump
jsonValue: 'Fatal'
jsonValue: >-
"Fatal"
-
name: Clear Firefox telemetry user ID
recommend: standard
Expand Down

0 comments on commit e775d68

Please sign in to comment.