Commit 0b6fadd6 authored by bentenjamin's avatar bentenjamin
Browse files

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 d3a6a124 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.
parent e6625a21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ let
        // to be able to install addons that do not have an extid
        // Security is maintained because only user whitelisted addons
        // with a checksum can be installed
        ${ lib.optionalString usesNixExtensions ''lockPref("xpinstall.signatures.required", false)'' };
        ${ lib.optionalString usesNixExtensions ''lockPref("xpinstall.signatures.required", false);'' }
      '';

      #############################