Skip to content

Commit

Permalink
Don't parse ports on uninstall
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 3, 2024
1 parent 2ef0790 commit 93c3dde
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/qz/installer/Installer.java
Original file line number Diff line number Diff line change
Expand Up @@ -364,11 +364,8 @@ public Installer invokeProvisioning(Phase phase) {
provisionInstaller.invoke(phase);

// Special case for custom websocket ports
switch(phase) {
case INSTALL:
case UNINSTALL:
if(phase == Phase.INSTALL) {
provisionInstaller.setCustomPorts(this);
break;
}
} catch(Exception e) {
log.warn("An error occurred invoking provision \"phase\": \"{}\"", phase, e);
Expand Down

0 comments on commit 93c3dde

Please sign in to comment.