We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff64ed1 commit 35d2078Copy full SHA for 35d2078
1 file changed
src/github/copilotPrWatcher.ts
@@ -263,7 +263,7 @@ export class CopilotPRWatcher extends Disposable {
263
const items: PullRequestModel[] = [];
264
let hasMore = true;
265
do {
266
- const prs = await folderManager.getPullRequests(PRType.Query, { fetchOnePagePerRepo: true, fetchNextPage: !hasMore }, query);
+ const prs = await folderManager.getPullRequests(PRType.Query, { fetchOnePagePerRepo: true, fetchNextPage: !this._model.isInitialized }, query);
267
items.push(...prs.items);
268
hasMore = prs.hasMorePages;
269
} while (hasMore);
0 commit comments