Skip to content

Commit

Permalink
Make events public
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldieeins committed Dec 1, 2024
1 parent 153765e commit 6b26773
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.zyneonstudios.nexus</groupId>
<artifactId>base-desktop</artifactId>
<version>2024.12.2</version>
<version>2024.12.3</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void onGotFocus(CefBrowser browser) {
@Override
public boolean onConsoleMessage(CefBrowser browser, CefSettings.LogSeverity level, String message, String source, int line) {
if (message.startsWith("[CONNECTOR] async.")) {
String request = message.replace("[CONNECTOR] ", "");
String request = message.replace("[CONNECTOR] async.", "");
if(asyncWebFrameConnectorEvent!=null) {
asyncWebFrameConnectorEvent.resolveMessage(request);
} else if(webFrameConnectorEvent!=null) {
Expand Down

0 comments on commit 6b26773

Please sign in to comment.