Fix crash when attempting to parse a nullish automation error

This commit is contained in:
Andrew Kingston 2022-08-08 16:44:00 +01:00
parent b6033a1bc5
commit 3c5e933577
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@ export async function checkAppMetadata(apps: App[]) {
for (let [key, errors] of Object.entries(metadata.automationErrors)) {
const updated = []
for (let error of errors) {
if (!error) {
continue
}
const startDate = error.split(dbUtils.SEPARATOR)[2]
if (startDate > maxStartDate) {
updated.push(error)