You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On some Linux platforms (I think those not running a Gnome desktop) Desktop.isDesktopSupported() returns true, however, Desktop.getDesktop().browse() is not a supported action, throwing an exception.
Recent updates to BareBonesBrowserLaunch already try to use Desktop.browse() if it is available, so it would be better to simplify this section of code to not check isDesktopSupported and only call BareBonesBrowserLaunch.openURL(evt.getURL().toString()); in the try block.
The text was updated successfully, but these errors were encountered:
The problem is here:
engine/client/src/com/mirth/connect/client/ui/FirstLoginDialog.java
Lines 180 to 194 in 7c53aef
On some Linux platforms (I think those not running a Gnome desktop)
Desktop.isDesktopSupported()
returns true, however,Desktop.getDesktop().browse()
is not a supported action, throwing an exception.Recent updates to
BareBonesBrowserLaunch
already try to useDesktop.browse()
if it is available, so it would be better to simplify this section of code to not checkisDesktopSupported
and only callBareBonesBrowserLaunch.openURL(evt.getURL().toString());
in the try block.The text was updated successfully, but these errors were encountered: