feat: Improve Google Drive file download handling

This commit is contained in:
Taylor Wilsdon (aider)
2024-12-15 18:42:26 -05:00
parent eef18d4440
commit 64c8bbc16a
2 changed files with 6 additions and 2 deletions

View File

@@ -501,12 +501,14 @@
try {
const fileData = await createPicker();
if (fileData) {
// Pass the OAuth token along with the file data
dispatch('upload', {
type: 'google-drive',
data: {
name: fileData.name,
url: fileData.url,
id: fileData.id
id: fileData.id,
token: await getAuthToken() // Include OAuth token for download
}
});
}