Skip to content

Commit 0b6fadd

Browse files
committed
firefox: fix wrapper autoconfig semicolon
The wrapper has a conditional checking for optional nix extensions. If it exists it adds a preference line to the autoConfig file. In the previous commit d3a6a12 the conditional was added to the line in the config, but it missed the semicolon at the end of the string. Leading to the autoConfig file always having a seemingly random ; regardless of the condition.
1 parent e6625a2 commit 0b6fadd

File tree

1 file changed

+1
-1
lines changed
  • pkgs/applications/networking/browsers/firefox

1 file changed

+1
-1
lines changed

pkgs/applications/networking/browsers/firefox/wrapper.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ let
147147
// to be able to install addons that do not have an extid
148148
// Security is maintained because only user whitelisted addons
149149
// with a checksum can be installed
150-
${ lib.optionalString usesNixExtensions ''lockPref("xpinstall.signatures.required", false)'' };
150+
${ lib.optionalString usesNixExtensions ''lockPref("xpinstall.signatures.required", false);'' }
151151
'';
152152

153153
#############################

0 commit comments

Comments
 (0)