Skip to content

Commit

Permalink
Update logref.js
Browse files Browse the repository at this point in the history
  • Loading branch information
shysolocup authored Sep 26, 2024
1 parent 596a1b4 commit a85b327
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/logs/scripts/logref.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ groups.forEach((group, gi) => {
var v = content;

versionnames.forEach((vn, i) => {
if (group.includes(`${vn}_`)) {
let subref = group.split("_")[0];
if (subref == vn) {
if (!versions[vn]) versions[vn] = { header: `## ${vn}`, subs: [] };

vsubs = versions[vn].subs;
Expand Down

0 comments on commit a85b327

Please sign in to comment.