We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 774e268 commit 762c18cCopy full SHA for 762c18c
1 file changed
pigeon.gd
@@ -35,6 +35,7 @@ func _on_request_completed(result: int, response_code: int, _headers: PackedStri
35
print("You are using the latest version.")
36
else:
37
print("Download complete, Installing...")
38
- print(body.get_string_from_utf8())
+ var file = FileAccess.open(TEMP_PCK_PATH, FileAccess.WRITE)
39
+ file.store_var(body)
40
41
print("Download failed with result: " + str(result) + " and response code: " + str(response_code))
0 commit comments