chore: fixing the human readable confluence url fetch baseUrl

This commit is contained in:
Predrag Stojadinovic 2024-05-17 13:33:09 +02:00
parent 0fb5fa29ad
commit 2da4328c93

View File

@ -107,9 +107,8 @@ async function loadConfluence({ pageUrl, username, accessToken }) {
)
: path.resolve(process.env.STORAGE_DIR, `documents/${outFolder}`);
if (!fs.existsSync(outFolderPath)) {
if (!fs.existsSync(outFolderPath))
fs.mkdirSync(outFolderPath, { recursive: true });
}
docs.forEach((doc) => {
if (!doc.pageContent) return;