1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-12 19:10:21 +03:00

Fix demo mode

Urgent fix for demo mode
This commit is contained in:
Andi Kanzler 2024-12-14 23:01:11 -03:00 committed by GitHub
parent 1475b04a4d
commit 63fdfee367
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -202,7 +202,9 @@ var SITLProcess = {
}
}
callback( sitlExePath + " " + args.join(" ") + "\n");
if (callback) {
callback( sitlExePath + " " + args.join(" ") + "\n");
}
this.spawn(sitlExePath, args, callback);
},