default unknown keys to rscadd (#8543)

This commit is contained in:
Kashargul
2024-06-20 00:02:37 +02:00
committed by GitHub
parent 2433714495
commit 2b3d26df62
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ export const CHANGELOG_ENTRIES = [
],
[
["qol"],
["qol", "tweak"],
{
placeholders: ["made something easier to use"],
},

View File

@@ -40,7 +40,7 @@ function parseChangelogBody(lines, openTag) {
if (match) {
const [_, type, description] = match;
const entry = CHANGELOG_KEYS_TO_ENTRY[type];
const entry = CHANGELOG_KEYS_TO_ENTRY[type] || CHANGELOG_KEYS_TO_ENTRY["rscadd"];
if (entry.placeholders.includes(description)) {
continue;