summaryrefslogtreecommitdiff
path: root/source/features/show-names.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'source/features/show-names.tsx')
-rw-r--r--source/features/show-names.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/show-names.tsx b/source/features/show-names.tsx
index 593b6775..48ca1220 100644
--- a/source/features/show-names.tsx
+++ b/source/features/show-names.tsx
@@ -9,7 +9,7 @@ import {getUsername, compareNames} from '../github-helpers';
async function init(): Promise<false | void> {
const usernameElements = select.all([
- '.js-discussion a.author:not(.rgh-fullname):not([href*="/marketplace/"]):not([data-hovercard-type="organization"])', // `a` selector needed to skip commits by non-GitHub users.
+ '.js-discussion a.author:not(.rgh-fullname):not([href*="/apps/"]):not([href*="/marketplace/"]):not([data-hovercard-type="organization"])', // `a` selector needed to skip commits by non-GitHub users.
'#dashboard a.text-bold[data-hovercard-type="user"]:not(.rgh-fullname)' // On dashboard `.text-bold` is required to not fetch avatars.
]);