Skip to content

Commit f5d93be

Browse files
fix: google drive not setting the display name (#525)
1 parent 28e70d4 commit f5d93be

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.33
2+
3+
* **Fix google drive not setting the display_name property on the FileData object**
4+
15
## 1.0.32
26

37
* **Fix google drive connector's dependencies**

unstructured_ingest/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.32" # pragma: no cover
1+
__version__ = "1.0.33" # pragma: no cover

unstructured_ingest/processes/connectors/google_drive.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@ def map_file_data(root_info: dict) -> FileData:
344344
},
345345
),
346346
additional_metadata=root_info,
347+
display_name=source_identifiers.fullpath,
347348
)
348349

349350
def get_paginated_results(

0 commit comments

Comments
 (0)