mirror of
https://github.com/open-webui/open-webui
synced 2025-03-03 19:07:21 +00:00
feat: Improve Google Drive file upload with correct headers
This commit is contained in:
parent
7d55f9bc2e
commit
29efee8ede
@ -362,10 +362,7 @@
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
files = [...files, fileItem];
|
files = [...files, fileItem];
|
||||||
// Pass both URL and headers to processWeb
|
const res = await processWeb(localStorage.token, '', fileData.url, fileData.headers);
|
||||||
const res = await processWeb(localStorage.token, '', fileData.url, {
|
|
||||||
headers: fileData.headers
|
|
||||||
});
|
|
||||||
|
|
||||||
if (res) {
|
if (res) {
|
||||||
fileItem.status = 'uploaded';
|
fileItem.status = 'uploaded';
|
||||||
|
@ -126,7 +126,8 @@ export const createPicker = () => {
|
|||||||
name: fileName,
|
name: fileName,
|
||||||
url: downloadUrl,
|
url: downloadUrl,
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': `Bearer ${oauthToken}`
|
'Authorization': `Bearer ${oauthToken}`,
|
||||||
|
'Content-Type': 'application/json'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
console.log('Resolving picker with:', result);
|
console.log('Resolving picker with:', result);
|
||||||
|
Loading…
Reference in New Issue
Block a user