|
@@ -362,7 +362,10 @@
|
|
|
|
|
|
try {
|
|
try {
|
|
files = [...files, fileItem];
|
|
files = [...files, fileItem];
|
|
- const res = await processWeb(localStorage.token, '', fileData.url, fileData.headers);
|
|
|
|
|
|
+ // Pass both URL and headers to processWeb
|
|
|
|
+ const res = await processWeb(localStorage.token, '', fileData.url, {
|
|
|
|
+ headers: fileData.headers
|
|
|
|
+ });
|
|
|
|
|
|
if (res) {
|
|
if (res) {
|
|
fileItem.status = 'uploaded';
|
|
fileItem.status = 'uploaded';
|