1
0

Fix path concatenation in renderer.js

This commit is contained in:
2025-05-31 19:12:37 +02:00
parent f69977de11
commit 6e09f25dd6

View File

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