File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
src/plus/integrations/providers Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -193,13 +193,8 @@ export class BitbucketIntegration extends HostingIntegration<
193193
194194 protected override async searchProviderMyPullRequests (
195195 session : ProviderAuthenticationSession ,
196- requestedRepositories ?: BitbucketRepositoryDescriptor [ ] ,
196+ _repos ?: BitbucketRepositoryDescriptor [ ] ,
197197 ) : Promise < PullRequest [ ] | undefined > {
198- if ( requestedRepositories != null ) {
199- // TODO: implement repos version
200- return undefined ;
201- }
202-
203198 const remotes = await flatSettled ( this . container . git . openRepositories . map ( r => r . git . remotes ( ) . getRemotes ( ) ) ) ;
204199 const repos = await nonnullSettled (
205200 remotes . map ( async r => ( ( await r . getIntegration ( ) ) ?. id === this . id ? r . path : undefined ) ) ,
You can’t perform that action at this time.
0 commit comments