MISC: Add file metadata (timestamps) (#2199)

This commit is contained in:
catloversg
2025-06-17 06:34:06 +07:00
committed by GitHub
parent e5bfa641e1
commit a794fddaf7
19 changed files with 297 additions and 30 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ export abstract class BaseServer implements IServer {
const existingFile = this.textFiles.get(textPath);
// overWrite if already exists
if (existingFile) {
existingFile.text = txt;
existingFile.content = txt;
return { overwritten: true };
}