From 1fcad45b97835a746165f496fbaf61333b8d5377 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 00:41:45 +0200 Subject: [PATCH] Update date formatting in autoCommit function --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 763c20e..369da83 100644 --- a/main.js +++ b/main.js @@ -655,7 +655,7 @@ async function autoCommit(folderPath, message) { folders[idx].llmCandidates.push(newHead); if(folders[idx].llmCandidates.length == 1){ folders[idx].firstCandidateBirthday = Date.now(); - debug('[autoCommit] Erster Commit aufgenommen. Automatischer message-rewrite spätestens: ' + Date.now() + (store.get('minutesCommitThreshold')*60*1000) ); + debug('[autoCommit] Erster Commit aufgenommen. Automatischer message-rewrite spätestens: ' + Date(Date.now() + (store.get('minutesCommitThreshold')*60*1000)) ); } folders[idx].lastHeadHash = newHead; console.log(folders[idx].llmCandidates)