Merge branch 'feature/cloud-sync' into feature/game-achievements

This commit is contained in:
Zamitto
2024-10-21 16:13:02 -03:00
4 changed files with 9 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ export const backupGame = ({
preview?: boolean;
winePrefix?: string;
}) => {
const args = ["backup", title, "--api", "--force"];
const args = ["backup", `"${title}"`, "--api", "--force"];
if (preview) args.push("--preview");
if (backupPath) args.push("--path", backupPath);