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
When launching an OS.js application from another application using core.run('AppName', args), OS.js reuses the existing instance if the app is already running.
As a result:
• Any new arguments passed to the app are ignored.
• Multiple calls to launch the app do not create new independent instances.
Expected behavior:
• Each launch should be able to create a new process instance of the application with its own arguments.
• The called application’s code should remain unchanged.