Skip to content

Commit

Permalink
Fix Bug When Starting Exe File from File Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
KreitinnSoftware authored Feb 6, 2025
1 parent 6223e0f commit 3c4f823
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ class MainActivity : AppCompatActivity() {
if (fileExtension == "exe" || fileExtension == "bat" || fileExtension == "msi" || fileExtension == "lnk") {
val runWineIntent = Intent(ACTION_RUN_WINE).apply {
putExtra("exePath", file.path)
putExtra("exeArguments", "")
}

sendBroadcast(runWineIntent)
Expand Down

0 comments on commit 3c4f823

Please sign in to comment.