Skip to content

Commit

Permalink
Revert "Update Form1.cs"
Browse files Browse the repository at this point in the history
This reverts commit 5a59217.
  • Loading branch information
Ovler-Young committed Oct 23, 2022
1 parent 6fac929 commit 217d67e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AdnmbBackup-gui/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ private void button1_Click(object sender, EventArgs e)
var t = http.GetAsync(url + "?id=" + id + "&page=1");
t.Wait();
var result = t.Result;
label4.Text = "0";
var t2 = result.Content.ReadAsStringAsync();
label4.Text = "5";
var t2 = result.Content.ReadAsByteArrayAsync();
t2.Wait();
var bytes = t2.Result;
var str = ReadGzip(bytes);
Expand Down

0 comments on commit 217d67e

Please sign in to comment.