Fixed shell command launcher

I was having issues launching LibreWolf in private mode from a program I built
So I tried mirroring the registry entry of a standard Firefox installation, and that seems to have fixed it
It seems like the paths needed quoting
This commit is contained in:
Brian 2022-03-05 17:37:18 -05:00 committed by Bert van der Weerd
parent fc4f1e1424
commit 1f0742f703

View file

@ -120,7 +120,7 @@ Section
WriteRegStr HKLM "Software\Classes\LibreWolfHTM\Application" "ApplicationDescription" "Start the LibreWolf Browser"
WriteRegStr HKLM "Software\Classes\LibreWolfHTM\Application" "ApplicationCompany" "LibreWolf Community"
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$\" -osint -url $\"%1$\""
SectionEnd