chore: fixing the human readable confluence url fetch baseUrl

This commit is contained in:
Predrag Stojadinovic 2024-05-17 13:31:59 +02:00
parent b0497d3caf
commit 0fb5fa29ad

View File

@ -101,7 +101,10 @@ async function loadConfluence({ pageUrl, username, accessToken }) {
const outFolderPath =
process.env.NODE_ENV === "development"
? path.resolve(__dirname, `../../../../server/storage/documents/${outFolder}`)
? path.resolve(
__dirname,
`../../../../server/storage/documents/${outFolder}`
)
: path.resolve(process.env.STORAGE_DIR, `documents/${outFolder}`);
if (!fs.existsSync(outFolderPath)) {