Skip to content

Commit

Permalink
fix(CmdEntryPoint.java): fix sending broadcast from JNI.
Browse files Browse the repository at this point in the history
  • Loading branch information
twaik committed Jan 13, 2025
1 parent fc18466 commit 35a8dc5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/src/main/java/com/termux/x11/CmdEntryPoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ private Intent createIntent() {
return intent;
}

private void sendBroadcast() {
sendBroadcast(intent);
}

static void sendBroadcast(Intent intent) {
try {
ctx.sendBroadcast(intent);
Expand Down

0 comments on commit 35a8dc5

Please sign in to comment.