summaryrefslogtreecommitdiff
path: root/source/features/tag-changelog-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'source/features/tag-changelog-link.tsx')
-rw-r--r--source/features/tag-changelog-link.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/features/tag-changelog-link.tsx b/source/features/tag-changelog-link.tsx
index cce68c6a..1bff0b9f 100644
--- a/source/features/tag-changelog-link.tsx
+++ b/source/features/tag-changelog-link.tsx
@@ -1,11 +1,10 @@
import React from 'dom-chef';
import select from 'select-dom';
import DiffIcon from 'octicon/diff.svg';
+import * as pageDetect from 'github-url-detection';
import tinyVersionCompare from 'tiny-version-compare';
import features from '../libs/features';
-import * as pageDetect from '../libs/page-detect';
import fetchDom from '../libs/fetch-dom';
-import {isSingleTagPage} from '../libs/page-detect';
import {getRepoPath, getRepoURL, parseTag} from '../libs/utils';
type TagDetails = {
@@ -22,7 +21,7 @@ async function getNextPage(): Promise<DocumentFragment> {
return fetchDom(nextPageLink.href);
}
- if (isSingleTagPage()) {
+ if (pageDetect.isSingleTagPage()) {
const [, tag = ''] = getRepoPath()!.split('releases/tag/', 2); // Already URL-encoded
return fetchDom(`/${getRepoURL()}/tags?after=${tag}`);
}