Skip to content

Commit

Permalink
Fix immich widget after breaking changes update
Browse files Browse the repository at this point in the history
  • Loading branch information
Canti23 committed Nov 4, 2024
1 parent 18360e2 commit 3ef840e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/customservices.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/components/services/Immich.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3ef840e

Please sign in to comment.