@livedesk/client 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/livedesk-client.js +1 -1
- package/package.json +1 -1
package/bin/livedesk-client.js
CHANGED
|
@@ -271,7 +271,7 @@ async function createSupabaseClient() {
|
|
|
271
271
|
|
|
272
272
|
function openBrowser(url) {
|
|
273
273
|
if (os.platform() === 'win32') {
|
|
274
|
-
spawn('
|
|
274
|
+
spawn('rundll32.exe', ['url.dll,FileProtocolHandler', url], { detached: true, stdio: 'ignore', windowsHide: true }).unref();
|
|
275
275
|
return;
|
|
276
276
|
}
|
|
277
277
|
const command = os.platform() === 'darwin' ? 'open' : 'xdg-open';
|