1
0
Fork 0
mirror of synced 2024-08-18 11:31:28 +12:00

Merge pull request #7165 from Budibase/fix/applications-500

Fix crash when attempting to parse a nullish automation error
This commit is contained in:
Martin McKeaveney 2022-08-09 10:55:41 +01:00 committed by GitHub
commit 6526143081

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)