1
0

Fix path concatenation in renderer.js

This commit is contained in:
2025-05-31 19:13:22 +02:00
parent 6e09f25dd6
commit 1275fc73bc

View File

@@ -543,7 +543,7 @@ async function startLiveCountdown(folderObj, msLeft) {
// Dynamischer Renderbutton
// statt dessen lieber den tree auslesen?
const readmePath = folder('README.md').join('');
const readmePath = folder + ('README.md');
if (fs.existsSync(readmePath)) {
readmeBtn.textContent = 'Update README';
} else {