fixed variables

This commit is contained in:
2023-06-14 22:22:08 +02:00
parent 47d1919fc3
commit 9dcc0fc6a9

View File

@@ -61,10 +61,10 @@ async function getUntis(weekDate) {
let optionsSuccess = true; let optionsSuccess = true;
try { try {
const untisSchools = process.env.UNTIS_SCHOOLS.split(","); untisSchools = process.env.UNTIS_SCHOOLS.split(",");
const untisUsernames = process.env.UNTIS_USERNAMES.split(","); untisUsernames = process.env.UNTIS_USERNAMES.split(",");
const untisPasswords = process.env.UNTIS_PASSWORDS.split(","); untisPasswords = process.env.UNTIS_PASSWORDS.split(",");
const untisServers = process.env.UNTIS_SERVERS.split(","); untisServers = process.env.UNTIS_SERVERS.split(",");
} catch (error) { } catch (error) {
optionsSuccess = false; optionsSuccess = false;
} }