We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6546a27 commit a0982e9Copy full SHA for a0982e9
addons/awaitable_http_request/http_result.gd
@@ -19,7 +19,7 @@ func status_ok() -> bool:
19
20
## Checks whether the [member status] is between 400 and 599 (inclusive), see [url]https://developer.mozilla.org/en-US/docs/Web/HTTP/Status[/url].
21
func status_err() -> bool:
22
- return status >= 400 and status < 599
+ return status >= 400 and status < 600
23
24
## The response body as a [String].[br]
25
## For other formatting (ascii, utf16, ...) or special use-cases (file I/O, ...), it is possible to access the raw body's [member bytes].[br]
0 commit comments