Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The original example we had in FAQ doesn't work for multiple reasons:
base64.decodebytes
function expects bytes as the input arg, howeverstatus.icon
is a string, we should be usingbase64.b64decode
instead."data:image/png;base64,"
, which isn't valid base64 data, and should not be a part of the saved PNG, it's just a a prefix informing us what kind of image this is, and what is the formatting (and a fairly standard one, even browsers can interpret it, but it certainly shouldn't be interpreted as part of the base64 encoded image data).server_icon_file
) and the variable used in body (server_favicon_file
).The snippet originally also didn't contain the code that originally obtained this image, I've included that to make it very clear where the
status
variable came from.