We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec87f7 commit 159bca2Copy full SHA for 159bca2
1 file changed
ai/mcp/server/github-workflow/services/SyncService.mjs
@@ -506,7 +506,7 @@ class SyncService extends Base {
506
allIssues.push(...issues.nodes);
507
508
hasNextPage = issues.pageInfo.hasNextPage;
509
- cursor = issues.pageInfo.endCursor;
+ cursor = issues.pageInfo.endCursor;
510
511
// Monitor rate limit usage
512
totalCost += data.rateLimit.cost;
@@ -521,7 +521,7 @@ class SyncService extends Base {
521
logger.info(`Found ${allIssues.length} issues updated since last sync`);
522
523
const newMetadata = {
524
- issues : { ...metadata.issues }, // Start with existing metadata
+ issues : { ...metadata.issues }, // Start with existing metadata
525
pushFailures: metadata.pushFailures || [],
526
lastSync : new Date().toISOString()
527
};
0 commit comments