1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-11-25 21:55:55 +00:00

Fix "Invalid argument '&'" error

This commit is contained in:
NotHyper-474 2024-05-12 23:16:12 -03:00
parent a6948c3a38
commit 0322a83882

View file

@ -24,7 +24,7 @@ class WindowUtil
{ {
#if CAN_OPEN_LINKS #if CAN_OPEN_LINKS
#if linux #if linux
Sys.command('/usr/bin/xdg-open', [targetUrl, '&']); Sys.command('/usr/bin/xdg-open ' + targetUrl + ' &');
#else #else
// This should work on Windows and HTML5. // This should work on Windows and HTML5.
FlxG.openURL(targetUrl); FlxG.openURL(targetUrl);