mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
changed "_id" key to "id" in ftrack sync
This commit is contained in:
parent
a732ce3ee9
commit
8a71f5ecac
2 changed files with 2 additions and 2 deletions
|
|
@ -113,7 +113,7 @@ class SyncLinksToAvalon(BaseEvent):
|
|||
continue
|
||||
|
||||
links.append({
|
||||
"_id": ObjectId(link_mongo_id),
|
||||
"id": ObjectId(link_mongo_id),
|
||||
"linkedBy": "ftrack",
|
||||
"type": "breakdown"
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1479,7 +1479,7 @@ class SyncEntitiesFactory:
|
|||
mongo_id = self.ftrack_avalon_mapper.get(ftrack_link_id)
|
||||
if mongo_id is not None:
|
||||
input_links.append({
|
||||
"_id": ObjectId(mongo_id),
|
||||
"id": ObjectId(mongo_id),
|
||||
"linkedBy": "ftrack",
|
||||
"type": "breakdown"
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue