diff options
Diffstat (limited to 'source/features/bypass-checks.tsx')
-rw-r--r-- | source/features/bypass-checks.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/features/bypass-checks.tsx b/source/features/bypass-checks.tsx index 03303573..b5357835 100644 --- a/source/features/bypass-checks.tsx +++ b/source/features/bypass-checks.tsx @@ -9,7 +9,10 @@ async function bypass(detailsLink: HTMLAnchorElement): Promise<void> { detailsLink.href, '[data-hydro-click*="check_suite.external_click"]' ); - detailsLink.href = directLink!.href; + + if (directLink) { + detailsLink.href = directLink.href; + } } async function init(): Promise<void> { |