From f3dd87db04481c947fdae25db7fac6ceb18fe566 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:44:05 +0100 Subject: [PATCH] put responses around quotes --- Bloxstrap/RobloxDeployment.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/RobloxDeployment.cs b/Bloxstrap/RobloxDeployment.cs index 8315a60c3..37784a578 100644 --- a/Bloxstrap/RobloxDeployment.cs +++ b/Bloxstrap/RobloxDeployment.cs @@ -39,7 +39,7 @@ public static class RobloxDeployment // the response body should always be "version-012732894899482c". string content = await response.Content.ReadAsStringAsync(token); if (content != VersionStudioHash) - throw new Exception($"versionStudio response does not match (expected {VersionStudioHash}, got {content})"); + throw new Exception($"versionStudio response does not match (expected \"{VersionStudioHash}\", got \"{content}\")"); } catch (TaskCanceledException) {