mirror of
https://github.com/alamion/obsidian-jira-sync.git
synced 2026-07-22 05:43:04 +00:00
jql fix
This commit is contained in:
parent
08a9c48cfb
commit
e7d4af611b
2 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"));
|
||||
|
|
|
|||
Loading…
Reference in a new issue