fixed mindserver to use correct port

This commit is contained in:
uukelele-scratch 2024-12-24 07:28:59 +00:00 committed by GitHub
parent afe43c000e
commit 7b5e9d7045
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ function getProfiles(args) {
async function main() {
if (settings.host_mindserver) {
const mindServer = createMindServer();
const mindServer = createMindServer(settings.mindserver_port);
}
mainProxy.connect();
@ -55,4 +55,4 @@ try {
} catch (error) {
console.error('An error occurred:', error);
process.exit(1);
}
}