Skip to content

Commit

Permalink
Merge pull request #570 from razzeee/update-regex
Browse files Browse the repository at this point in the history
  • Loading branch information
razzeee authored Aug 5, 2023
2 parents 2ccc377 + ceed1f8 commit 7125f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/addon-parser/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ async function app() {
console.log(error);
}
if (stats) {
let forumRegEx = new RegExp("<span .*>(.*)<span>Threads");
let forumRegEx = new RegExp("<span .*>(.*)</span><i .*></i> Total Threads");
let forumMatch = forumRegEx.exec(stats);
if (forumMatch !== null) {
forumThreads = forumMatch[1];
Expand Down

0 comments on commit 7125f84

Please sign in to comment.