Skip to content

Commit

Permalink
Fixing client not terminating on patch error
Browse files Browse the repository at this point in the history
  • Loading branch information
colincornaby committed Jun 24, 2024
1 parent 50f7d3d commit 5d83030
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sources/Plasma/Apps/plClient/Mac-Cocoa/main.mm
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,8 @@ - (void)patcherCompletedWithError:(PLSPatcher*)patcher error:(NSError*)error
NSAlert* failureAlert = [NSAlert alertWithError:error];
[failureAlert beginSheetModalForWindow:self.patcherWindow.window
completionHandler:^(NSModalResponse returnCode){

[NSApp terminate:self];
}];
[NSApp terminate:self];
}

- (void)patcher:(PLSPatcher*)patcher
Expand Down

0 comments on commit 5d83030

Please sign in to comment.