diff --git a/manifest.json b/manifest.json index bbea719..24c9dbd 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "jira-sync", "name": "Jira Issue Manager", - "version": "1.3.2", + "version": "1.3.3", "minAppVersion": "1.7.7", "description": "Get Jira issues, create and update them. Issue status and worklog management.", "author": "Alamion", diff --git a/src/commands/batchFetchIssues.ts b/src/commands/batchFetchIssues.ts index 36723c2..57f8488 100644 --- a/src/commands/batchFetchIssues.ts +++ b/src/commands/batchFetchIssues.ts @@ -35,7 +35,7 @@ export async function batchFetchAndCreateIssues(plugin: JiraPlugin, jql: string) try { new Notice(t("fetching_started")); - const issues = await fetchIssuesByJQL(plugin, jql, -1); + const issues = await fetchIssuesByJQL(plugin, jql); if (issues.length === 0) { new Notice(t("no_issues_found"));