We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57cc9cb commit ba6fd0eCopy full SHA for ba6fd0e
src/routes/tracker/[org]/[repo]/+page.server.ts
@@ -37,7 +37,9 @@ export async function load({ params }) {
37
for (const keyword of closingKeywords) {
38
if (
39
lowerBody.includes(`${keyword} #`) ||
40
+ lowerBody.includes(`${keyword}: #`) ||
41
lowerBody.includes(`${keyword} https://github.com`) ||
42
+ lowerBody.includes(`${keyword}: https://github.com`) ||
43
new RegExp(`${keyword} [A-Za-z0-9_-]+/[A-Za-z0-9_-]+#[0-9]+`).test(lowerBody)
44
) {
45
return false;
0 commit comments