mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
Ignore failures when registering firewall exceptions
There appear to be bugs in the WiX firewall extension that causes errors on install/upgrade in some scenarios (seemingly where existing fw exceptions for Moonlight exist as in #1309). Since a firewall exception really only provides minimal benefits for us in the default configuration of Windows Firewall (outgoing: allow, incoming: deny) due to WFP's stateful treatment of solicited unicast/multicast UDP traffic, let's allow it to silently fail and not abort the whole installation.
This commit is contained in:
parent
04edfdc4ca
commit
a6e549471c
1 changed files with 1 additions and 0 deletions
|
@ -101,6 +101,7 @@
|
||||||
Source="$(var.BuildDir)\app\$(var.Configuration)\Moonlight.exe">
|
Source="$(var.BuildDir)\app\$(var.Configuration)\Moonlight.exe">
|
||||||
<fire:FirewallException Id="MoonlightFirewallException"
|
<fire:FirewallException Id="MoonlightFirewallException"
|
||||||
Scope="any"
|
Scope="any"
|
||||||
|
IgnoreFailure="yes"
|
||||||
Name="$(var.FullName)" />
|
Name="$(var.FullName)" />
|
||||||
</File>
|
</File>
|
||||||
</Component>
|
</Component>
|
||||||
|
|
Loading…
Reference in a new issue