[tasks] Fix bad matching in label titles
This commit is contained in:
@ -9,8 +9,10 @@ def get_title_from_labels(labels: list[str], user_context_labels: list[str] = []
|
|||||||
task_context_labels: list = user_context_labels or settings.DEFAULT_TASK_CONTEXT_TAG_LIST
|
task_context_labels: list = user_context_labels or settings.DEFAULT_TASK_CONTEXT_TAG_LIST
|
||||||
for label in labels:
|
for label in labels:
|
||||||
# TODO We may also want to take a user list of labels instead
|
# TODO We may also want to take a user list of labels instead
|
||||||
|
label = label.capitalize()
|
||||||
if label in task_context_labels:
|
if label in task_context_labels:
|
||||||
title = label.capitalize()
|
title = label
|
||||||
|
continue
|
||||||
|
|
||||||
if title == "Unknown":
|
if title == "Unknown":
|
||||||
logger.warning(
|
logger.warning(
|
||||||
|
|||||||
Reference in New Issue
Block a user