My Code for Opening Bridge is Opening Creative Cloud Desktop

So, I think one of the recent updates made a change that has made my code to open Bridge instead open the creative cloud desktop. It worked flawless for a little over a year, and helps save me so much time in my workflow, when I listened to the application the code remains the same. Is there something I’m missing? Much thanks.

  if (document.getElementById("bridge").checked) {
    const openBridge = await batchPlay(
      [
        {
          _obj: "showFileBrowserPalette",
          _options: {
            dialogOptions: "display",
          },
        },
      ],
      {
        synchronousExecution: false,
        modalBehavior: "fail",
      }
    );
  }

Anyone have any ideas on this?