Fix immich widget after breaking changes update

This commit is contained in:
SergeiTarkhanov 2024-11-04 21:15:54 +03:00 committed by Bastien Wirtz
parent 1ca9a4b0eb
commit 546db41ab7
2 changed files with 2 additions and 2 deletions

View File

@ -463,7 +463,7 @@ The PiAlert service displays stats from your PiAlert server.
## Immich
The Immich service displays stats from your Immich server.
The Immich server must be running at least version 1.85.0 for the correct api endpoint to work.
The Immich server must be running at least version 1.118.0 for the correct api endpoint to work.
```yaml
- name: "Immich"

View File

@ -78,7 +78,7 @@ export default {
"x-api-key": this.item.apikey,
};
this.fetch(`/api/server-info/statistics`, { headers })
this.fetch(`/api/server/statistics`, { headers })
.then((stats) => {
this.photos = stats.photos;
this.videos = stats.videos;