We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce4f5c0 commit ab299fbCopy full SHA for ab299fb
1 file changed
fullykiosk/__init__.py
@@ -168,7 +168,7 @@ async def get(self, **kwargs):
168
raise FullyKioskError(response.status, await response.text())
169
170
content_type = response.headers['Content-Type']
171
- if content_type.startswith("image/"):
+ if content_type.startswith("image/") or content_type == "application/octet-stream":
172
return await response.content.read()
173
data = await response.json(content_type=content_type)
174
0 commit comments