fix(app): handle error while parsing changelog

This commit is contained in:
release-bot
2026-02-08 21:00:30 +01:00
parent e44b73bebf
commit 13c83efdb9

View File

@@ -52,7 +52,7 @@
const match = line.match(regex);
if (!match) {
throw new Error('Invalid commit line format');
return undefined;
}
const [, sha, link, description] = match;