mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Use lower only for comparison
Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
parent
1ee701b52f
commit
7b5ca16993
1 changed files with 2 additions and 2 deletions
|
|
@ -782,8 +782,8 @@ class ProjectPushItemProcess:
|
|||
self._task_info = {}
|
||||
return
|
||||
|
||||
dst_task_name = src_task_info["name"].lower()
|
||||
if dst_task_name not in folder_tasks:
|
||||
dst_task_name = src_task_info["name"]
|
||||
if dst_task_name.lower() not in folder_tasks:
|
||||
self._make_sure_task_exists(
|
||||
folder_entity, src_task_info
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue