mirror of
https://github.com/alamion/obsidian-jira-sync.git
synced 2026-07-22 05:43:04 +00:00
JQL API v3 problem fix
This commit is contained in:
parent
5ae08dfcce
commit
eeea7635e0
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ export async function fetchIssuesByJQLRaw(
|
|||
startAt,
|
||||
fields: fields && fields.length > 0 ? fields : undefined,
|
||||
}));
|
||||
return await baseRequest(plugin, 'post', `/search`, body);
|
||||
return await baseRequest(plugin, 'post', `/search${plugin.settings.apiVersion === "3" ? "/jql" : ""}`, body);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue