Camillo Visini

Results 21 comments of Camillo Visini

This is pydantic-related. You can make optional fields required in child classes, but you cannot make required fields optional. Maybe the following resources will help you: - https://github.com/samuelcolvin/pydantic/issues/1141#issuecomment-571247696 - https://stackoverflow.com/a/65907609/3778854...

Perhaps this helps: https://github.com/tomwojcik/starlette-context See docs for more plugins: https://starlette-context.readthedocs.io/en/latest/plugins.html#forwarded-for Example with FastAPI: ```python from starlette_context import middleware, plugins app = FastAPI() app.add_middleware( middleware.ContextMiddleware, plugins=( plugins.ForwardedForPlugin(), ), ) ``` Access...

I think you could try upgrading to the [latest release (0.4.0)](https://github.com/visini/synology_dl/releases/tag/0.4.0). There was a change in the Synology Auth API which I only noticed today when upgrading from DSM 6...

We're also running into this. For now, we've rolled back to `1.0.29`. As others have mentioned, we're also using Docker.

I'm also running into this. As a workaround, I'm using relative paths instead of aliases for the meantime.

I refined the styles and reverted to dark theme based on `@media` (without manual switcher). What do you think? 😊 Generation summary hover: ![localhost_3000_litestream_hover](https://github.com/user-attachments/assets/93907acd-565c-47eb-b22c-70f93db00eaf) Notice: ![localhost_3000_litestream_flash](https://github.com/user-attachments/assets/a519c780-22e7-4451-92f7-facb4fe73613)

This happened to me for the third time these past few months, luckily this issue (and the first comment with the solution - remove all layouts, restart, re-add all layouts)...

We're also seeing this, we're using `bun` as well.