Hello, my watchface is getting JSON from my server, but what started happening recently is that only the first request after the app is installed succeeds (code 200), and all subsequent requests (even though they are the same) fail with error code -400 (INVALID_HTTP_BODY_IN_NETWORK_RESPONSE).
The url is https://pwys.tmskfk.com/?lat=38.8914...jor=0&minor=35 - you can check that it returns valid JSON.
The only idea I have is that the response has "Content-Type: application/json; charset=utf-8" - normally it should be just "Content-Type: application/json", but this apparently allows for security vulnerability and thus express.js (the framework I use on server) has disallowed it and automatically adds charset. See https://github.com/expressjs/express/issues/3490.
Can this be the cause?