From ca4bc1a08ad50a1b93de70f400006707a2676864 Mon Sep 17 00:00:00 2001 From: We-Gold Date: Fri, 15 Oct 2021 15:59:47 -0400 Subject: [PATCH] Fixed a bug in the local nt server. --- package.json | 2 +- public/electron.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1120d30..4957d4b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Cougar-Dashboard", "author": "FRC Team 2539", - "version": "0.0.6", + "version": "0.0.7", "main": "public/electron.js", "scripts": { "dev": "vite", diff --git a/public/electron.js b/public/electron.js index 451251a..4a2355d 100644 --- a/public/electron.js +++ b/public/electron.js @@ -130,7 +130,7 @@ function startExecutableServer() { // Start the server const file = `${path.join(__dirname, "../build/pynetworktables2js.exe")}` - const args = [`--team=${teamNumber}`] + const args = [`--team ${teamNumber}`] // Ouput the current command being used console.log(`Using: executable for pynetworktables2js`)