Update date formatting in autoCommit function
This commit is contained in:
2
main.js
2
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)
|
||||
|
||||
Reference in New Issue
Block a user