mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 03:00:57 +00:00
fix: only check for tasks updates if jira is enabled
This commit is contained in:
parent
d43150d5cc
commit
e8e9c737e4
1 changed files with 1 additions and 1 deletions
|
|
@ -411,7 +411,7 @@
|
|||
const parentTask = task.parentId && this.getById(task.parentId);
|
||||
|
||||
// check for updates first
|
||||
if (this.TasksUtil.isJiraTask(task) || this.TasksUtil.isJiraTask(parentTask)) {
|
||||
if (this.Jira.isSufficientJiraSettings() && (this.TasksUtil.isJiraTask(task) || this.TasksUtil.isJiraTask(parentTask))) {
|
||||
// find out if current or parent is the task we want to handle
|
||||
let jiraTaskToHandle = task;
|
||||
if (!this.TasksUtil.isJiraTask(task) && this.TasksUtil.isJiraTask(parentTask)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue