fix: fixing games with colon ludusavi

This commit is contained in:
Chubby Granny Chaser 2024-10-21 20:10:18 +01:00
parent e86daacad4
commit 955725b646
No known key found for this signature in database
3 changed files with 8 additions and 4 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);