This commit is contained in:
timothycarambat
2025-07-10 13:20:39 -07:00
parent 49293e7dd7
commit ae2fa8805c

View File

@@ -43,8 +43,8 @@ class MSSQLConnector {
user: parsed?.username,
password: parsed?.password,
database: parsed?.endpoint,
server: parsed?.hosts[0]?.host,
port: parsed?.hosts[0]?.port,
server: parsed?.hosts?.[0]?.host,
port: parsed?.hosts?.[0]?.port,
};
}