Open sacovo opened 5 months ago
When indexing a google folder that contains a presentation that is not a ppts but a google presentation we encounter the following error:
Only files with binary content can be downloaded. Use Export with Docs Editors files.
This happens in
#danswer/connectors/google_drive/connector.py line 337 elif mime_type == GDriveMimeType.PPT.value: response = service.files().get_media(fileId=file["id"]).execute()
Instead of get_media the same approach as for SPREADSHEET should be used.
get_media
SPREADSHEET
This issue is stale because it has been open 75 days with no activity. Remove stale label or comment or this will be closed in 15 days.
When indexing a google folder that contains a presentation that is not a ppts but a google presentation we encounter the following error:
This happens in
Instead of
get_media
the same approach as forSPREADSHEET
should be used.