put responses around quotes

This commit is contained in:
bluepilledgreat 2024-08-23 18:44:05 +01:00
parent 2e8cb16ad4
commit f3dd87db04

View File

@ -39,7 +39,7 @@
// 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)
{