From 725562ffcd641b4a4d0b0b9f2a989f0f212aa10e Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Mon, 22 Aug 2016 18:54:14 -0400 Subject: [PATCH] Added a Path.Combine in GetManifest --- Manifest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Manifest.cs b/Manifest.cs index a95d009..df44598 100644 --- a/Manifest.cs +++ b/Manifest.cs @@ -55,7 +55,7 @@ public class Manifest } // Find config dir and manifest file - string maFile = Program.SteamGuardPath + "/manifest.json"; + string maFile = Path.Combine(Program.SteamGuardPath, "manifest.json"); // If there's no config dir, create it if (!Directory.Exists(Program.SteamGuardPath))