Open turt2live opened 7 years ago
From what I can see, somehow your homeserver says the response is in Windows-1254 encoding, while responding with (probably) UTF-8. A hotfix would probaby be to replace return await response.json()
with return await response.json(encoding='utf-8')
.
I don't know the message that caused this, just that it doesn't allow the bridge to work.