Skip to content

Commit

Permalink
[connectors] fix parent id (#9411)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdraier authored Dec 16, 2024
1 parent 96623ec commit 722a6c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectors/migrations/20241211_fix_gdrive_parents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async function migrate({
dataSourceConfig,
folderId: file.dustFileId,
parents: newParents,
parentId: file.parentId,
parentId: file.parentId ? getDocumentId(file.parentId) : null,
title: file.name,
});
}
Expand Down

0 comments on commit 722a6c6

Please sign in to comment.