From ecda79da051034b3804b42117304d7bcd659d0b1 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Tue, 30 Nov 2021 13:55:44 +0100 Subject: [PATCH] quote librewolf arguments to allow for spaces in filenames (issue #116) --- setup.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.nsi b/setup.nsi index 36ac22f..a19c9e7 100644 --- a/setup.nsi +++ b/setup.nsi @@ -82,7 +82,7 @@ Section "${PROGNAME}" WriteRegStr HKLM "Software\Classes\LibreWolfHTM\Application" "ApplicationDescription" "Howling to Freedom" WriteRegStr HKLM "Software\Classes\LibreWolfHTM\Application" "ApplicationCompany" "LibreWolf" WriteRegStr HKLM "Software\Classes\LibreWolfHTM\DefaultIcon" "" "$INSTDIR\librewolf.exe,0" - WriteRegStr HKLM "Software\Classes\LibreWolfHTM\shell\open\command" "" "$INSTDIR\librewolf.exe %1" + WriteRegStr HKLM "Software\Classes\LibreWolfHTM\shell\open\command" "" "$INSTDIR\librewolf.exe \"%1\"" SectionEnd