File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export class AutolinkedItemsNode extends ViewNode<ViewsWithCommits> {
5050 if ( remote != null ) {
5151 const providerAutolinks = this . view . container . autolinks . getAutolinks ( combineMessages , remote ) ;
5252
53- items = new Map ( union ( customAutolinks , providerAutolinks ) ) ;
53+ items = providerAutolinks ;
5454
5555 const [ autolinkedMapResult /*, ...prsResults*/ ] = await Promise . allSettled ( [
5656 this . view . container . autolinks . getLinkedIssuesAndPullRequests ( combineMessages , remote , {
@@ -65,6 +65,8 @@ export class AutolinkedItemsNode extends ViewNode<ViewsWithCommits> {
6565 items . set ( id , issue ) ;
6666 }
6767 }
68+
69+ items = new Map ( union ( items , customAutolinks ) ) ;
6870 } else {
6971 items = customAutolinks ;
7072 }
You can’t perform that action at this time.
0 commit comments