Skip to content

Commit

Permalink
Fix a but with the Mentions link on the profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
bitWolfy committed Jan 4, 2022
1 parent 5db47d8 commit 74b786f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/modules/misc/ProfileEnhancer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class ProfileEnhancer extends RE6Module {

const commentsLine = $("th:contains('Comments')");
if (commentsLine.length > 0)
commentsLine.next().append(` (<a href="/comments?group_by=comment&search[body_matches]=${username}&search[results]=exact">Mentions</a>)`)
commentsLine.next().append(` (<a href="/comments?group_by=comment&search[body_matches]=${username}">Mentions</a>)`)

const forumLine = $("th:contains('Forum Posts')");
if (forumLine.length > 0)
Expand Down

0 comments on commit 74b786f

Please sign in to comment.