fix: lastTimePlayed not updating correctly when merging games

This commit is contained in:
Zamitto
2025-10-10 14:40:57 -03:00
parent a9b67ad1e6
commit 91fd5932da
2 changed files with 4 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ export class CloudSync {
try {
await fs.promises.rm(backupPath, { recursive: true });
} catch (error) {
logger.error("Failed to remove backup path", error);
logger.error("Failed to remove backup path", { backupPath, error });
}
}
@@ -163,7 +163,7 @@ export class CloudSync {
try {
await fs.promises.unlink(bundleLocation);
} catch (error) {
logger.error("Failed to remove tar file", error);
logger.error("Failed to remove tar file", { bundleLocation, error });
}
}
}