carnet panel2
This commit is contained in:
parent
dad67c9002
commit
ea94d5eb79
@ -41,12 +41,16 @@ export async function GET(request: Request) {
|
|||||||
throw new Error('NEXTCLOUD_URL environment variable is not set');
|
throw new Error('NEXTCLOUD_URL environment variable is not set');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ensure baseURL ends with a slash
|
||||||
|
const normalizedBaseURL = baseURL.endsWith('/') ? baseURL : `${baseURL}/`;
|
||||||
|
|
||||||
const client = createClient({
|
const client = createClient({
|
||||||
username: credentials.username,
|
username: credentials.username,
|
||||||
password: credentials.password,
|
password: credentials.password,
|
||||||
baseURL: baseURL.endsWith('/') ? baseURL.slice(0, -1) : baseURL,
|
baseURL: normalizedBaseURL,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Construct the folder path without leading slash
|
||||||
const folderPath = `remote.php/dav/files/${credentials.username}/Private/${folder}`;
|
const folderPath = `remote.php/dav/files/${credentials.username}/Private/${folder}`;
|
||||||
console.log('Full folder path:', folderPath);
|
console.log('Full folder path:', folderPath);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user