mirror of
https://github.com/open-webui/open-webui
synced 2024-12-29 07:12:07 +00:00
feat: Improve Google Drive file upload handling in chat context
This commit is contained in:
parent
ec26296dc3
commit
1cc4eb241a
@ -532,12 +532,16 @@
|
||||
url: fileData.url,
|
||||
headers: fileData.headers // Use the actual headers from the picker
|
||||
});
|
||||
const uploadEvent = {
|
||||
type: 'google-drive',
|
||||
data: fileData
|
||||
};
|
||||
console.log('Dispatching upload event:', uploadEvent);
|
||||
dispatch('upload', uploadEvent);
|
||||
// Create a File object from the blob with proper name
|
||||
const file = new File([fileData.blob], fileData.name, {
|
||||
type: fileData.blob.type
|
||||
});
|
||||
console.log('Created File object:', {
|
||||
name: file.name,
|
||||
size: file.size,
|
||||
type: file.type
|
||||
});
|
||||
await uploadFileHandler(file);
|
||||
console.log('Upload event dispatched');
|
||||
} else {
|
||||
console.log('No file was selected from Google Drive');
|
||||
|
Loading…
Reference in New Issue
Block a user