Compare commits

..

2 Commits

View File

@ -140,6 +140,10 @@ async function checkTestFlight(app, pushoverAPI) {
if (betaStatus === "This beta is full.") { if (betaStatus === "This beta is full.") {
return clc.red(`${app.name}: Beta-Test ist voll.`); return clc.red(`${app.name}: Beta-Test ist voll.`);
} else if (
betaStatus === "This beta isn't accepting any new testers right now."
) {
return clc.red(`${app.name}: Beta akzeptiert keine neuen Tester.`);
} else { } else {
const otp = generateOTP(app.url); const otp = generateOTP(app.url);
OTP_STOREAGE[app.url] = otp; OTP_STOREAGE[app.url] = otp;