Skip to content

Commit

Permalink
put responses around quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Aug 23, 2024
1 parent 2e8cb16 commit f3dd87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bloxstrap/RobloxDeployment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit f3dd87d

Please sign in to comment.