remove unneeded code

This commit is contained in:
AustrianToast 2023-06-06 21:26:56 +02:00
parent 332ed62ca3
commit 7bbeaedf48

View File

@ -45,10 +45,7 @@ public class PacserverUtils {
}
request.Content = content;
HttpResponseMessage response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
await client.SendAsync(request);
}
public static void transferPacmanDatabases() {