We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 654fa6b commit 786cefaCopy full SHA for 786cefa
src/sync-manager.ts
@@ -259,6 +259,14 @@ export default class SyncManager {
259
await this.logger.info("Written file", {
260
normalizedPath,
261
});
262
+ this.metadataStore.data.files[normalizedPath] = {
263
+ path: normalizedPath,
264
+ sha: files[normalizedPath].sha,
265
+ dirty: false,
266
+ justDownloaded: true,
267
+ lastModified: Date.now(),
268
+ };
269
+ await this.metadataStore.save();
270
}),
271
);
272
0 commit comments