Skip to content

Commit

Permalink
Merge pull request #76 from dzmipt/finosFixSignalProcessing
Browse files Browse the repository at this point in the history
do not show dialog box if the server return kdb signal
  • Loading branch information
gyorokpeter authored Feb 21, 2022
2 parents e34c704 + 4ccb237 commit 9c05f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/studio/ui/StudioPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ public static void queryExecutionComplete(EditorTab editor, QueryResult queryRes
}

StudioPanel panel = editor.getPanel();
if (error == null || error instanceof c.K4AccessException) {
if (error == null || error instanceof c.K4Exception) {
try {
if (queryResult.isComplete()) {
JTabbedPane tabbedPane = panel.tabbedPane;
Expand Down

0 comments on commit 9c05f58

Please sign in to comment.