Skip to content

App.get cannot fetch some apps on macOS 15.5 (24F74) #363

@MDL13412

Description

@MDL13412

System Info

  • macOS 15.5 (24F74)
  • Phoenix 4.0.1 (137)

How to reproduce

Image

Key.on("t", ["shift", "alt"], () => {
    var app = App.get("WhatsApp");
    if (app === undefined) {
        Phoenix.log("App not found: WhatsApp");
    } else {
        Phoenix.log(`App found: WhatsApp, windows count: ${app.windows().length}`);
    }

    app = App.get("Brave Browser");
    if (app === undefined) {
        Phoenix.log("App not found: Brave Browser");
    } else {
        Phoenix.log(`App found: Brave Browser, windows count: ${app.windows().length}`);
    }
});

Output:

Phoenix: App not found: WhatsApp
Phoenix: App found: Brave Browser, windows count: 2

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions