Timon
Timon
I can reproduce this on 2.3.1 mobile and server on iOS. No mobile logs, nothing on the server. Seems like something on the frontend.
> Still 50k too go. It's not quick. why don't you try requesting your iCloud photos on Apple's export page and then upload them?
> I can confirm bug with Heartbeat Interval description (Uptime kuma version 2.0.2, docker). fixed in #6281, as mentioned in https://github.com/louislam/uptime-kuma/issues/6434#issuecomment-3588862707
> Some photos in my album appear duplicated — they look identical, but only one photo exists on the main “All Photos” page. > If I delete one of the...
Reasoning for d58f041 (_this is an AI suggestion I applied here_) The `AssetRepository.getById` query required a specific SQL syntax because it uses PostgreSQL's `array_agg()` function with `GROUP BY`. When using...
@plutec It's just about where to include the routers in your FastApi app ```diff app = FastApi() + app.include_router(router1) + app.include_router(router2) + app.include_router(router3) @app.get("/", tags=["Status"], operation_id="ping") async def ping(): return...
> OOC which version of the generator is this, and how does the openapi json differ when you reorder the `include_router` lines? Hey @daniellowtw! Sorry for answering just know…i am...
I also found another issue causing the same error as above when generating client code using fastapi and pydantic v2. Avoid using `typing.Any` as type hint if your dealing with...