Backport #33035 by wxiaoguang Fix #33026 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
parent
96fff862dc
commit
3df11c07a8
2 changed files with 4 additions and 2 deletions
|
@ -39,8 +39,9 @@ export function parseIssueHref(href: string): IssuePathInfo {
|
|||
|
||||
export function parseIssueNewHref(href: string): IssuePathInfo {
|
||||
const path = (href || '').replace(/[#?].*$/, '');
|
||||
const [_, ownerName, repoName, pathType, indexString] = /([^/]+)\/([^/]+)\/(issues|pulls)\/new/.exec(path) || [];
|
||||
return {ownerName, repoName, pathType, indexString};
|
||||
const [_, ownerName, repoName, pathTypeField] = /([^/]+)\/([^/]+)\/(issues\/new|compare\/.+\.\.\.)/.exec(path) || [];
|
||||
const pathType = pathTypeField.startsWith('issues/new') ? 'issues' : 'pulls';
|
||||
return {ownerName, repoName, pathType};
|
||||
}
|
||||
|
||||
export function parseIssuePageInfo(): IssuePageInfo {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue