Browse Source

feat: Add support for Google Slides with text/plain export

Taylor Wilsdon (aider) 4 months ago
parent
commit
f4b9f77cc9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/lib/utils/google-drive-picker.ts

+ 2 - 1
src/lib/utils/google-drive-picker.ts

@@ -109,7 +109,7 @@ export const createPicker = () => {
 						.setIncludeFolders(false)
 						.setSelectFolderEnabled(false)
 						.setMimeTypes(
-							'application/pdf,text/plain,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.google-apps.document,application/vnd.google-apps.spreadsheet'
+							'application/pdf,text/plain,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.google-apps.document,application/vnd.google-apps.spreadsheet,application/vnd.google-apps.presentation'
 						)
 				)
 				.setOAuthToken(token)
@@ -141,6 +141,7 @@ export const createPicker = () => {
 								} else if (mimeType.includes('spreadsheet')) {
 									exportFormat = 'text/csv';
 								} else if (mimeType.includes('presentation')) {
+									exportFormat = 'text/plain';
 									exportFormat =
 										'application/vnd.openxmlformats-officedocument.presentationml.presentation';
 								} else {