1
0

Update date formatting in autoCommit function

This commit is contained in:
2025-05-26 00:41:45 +02:00
parent 36ed02cc9a
commit 1fcad45b97

View File

@@ -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)