Marius Seufzer
Marius Seufzer
### Part 1 - Fixed dpi in #70022 - However this won't fix the initial problem just yet ### Part 2: - I realised that `DisplayServer.screen_get_scale` is completely off -...
From [StackOverflow](https://stackoverflow.com/a/41661445): > This is without display zoom. If you enable display zoom, scale remains the same, at 3, since the intermediate buffer is still rendered at 1 point =...
Okay I didn't manage to solve this yet. If someone else could take a look at this I'd be very grateful. Essentially turn on/off the iOS Display Zoom and start...
> Something like this should work: ... What's the go-to way (until we get proper support) for registering different middlewares for different routes? My current solution is to switch over...
I essentially have two types of endpoints: 1. Public endpoints: Don't need any middleware 2. Private endpoints: Only authenticated requests should reach the request handler. In Vapor we usually solve...
@czechboy0 Thank you very much for your answer! While this does remove the additional route checking during runtime it is not very flexible. With each additional middleware this will require...
Ah nice! I didn't mention it in this PR yet but `PotentCodable` has the exact same issue :D I'd still prefer to migrate to `PotentCodable` since it seems to be...
Cool! Yeah throwing an error should be fine! Adding the wellformed checks will likely decrease performance, so maybe we should make it optional?
Oh okay! I don't really know how CBOR or the safety checks work under the hood, but if it's really just a nested level check you're right and it shouldn't...