Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Partner Photos in Map on Web #16603

Open
1 of 4 tasks
KernelSailor opened this issue Mar 5, 2025 · 4 comments
Open
1 of 4 tasks

Partner Photos in Map on Web #16603

KernelSailor opened this issue Mar 5, 2025 · 4 comments

Comments

@KernelSailor
Copy link

KernelSailor commented Mar 5, 2025

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

When you try to show photos of your partner in the web app, the toggle button is grayed out and in the center.

Image

In the mobile App (for Android tested) partner photos can be shown on the Map.

The OS that Immich Server is running on

ubuntu server with docker

Version of Immich Server

1.128.0

Version of Immich Mobile App

1.128.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - stack.env
    ports:
      - 2283:2283
    depends_on:
      - redis
      - database
    restart: unless-stopped
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e
    healthcheck:
      test: redis-cli ping || exit 1
    restart: unless-stopped

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
    restart: unless-stopped



#############
#Machine Learning cointainer also present and working, but not in this config

Your .env content

UPLOAD_LOCATION=/mnt/imagepath
DB_DATA_LOCATION=/mnt/dockerdata/immich/postgres
IMMICH_VERSION=release
DB_PASSWORD=<something>
DB_USERNAME=<db-user>
DB_DATABASE_NAME=<db-name>
TZ=Europe/Berlin
IMMICH_TRUSTED_PROXIES=<some-IPs>

Reproduction steps

  1. upload some pictures from multiple accounts
  2. enable partner sharing from one account
  3. try to view the pictures in the map for both accounts (via the sharing function)

Relevant log output

Additional information

No response

@egutierrez-ar
Copy link

Hi, I also fond this issue after upgrading 2 separate instances to 0.128

I thought it was related to how the settings are kept in local storage, and made a followup on this previous pull request

#15375 (comment)

@KernelSailor
Copy link
Author

Hi, I also fond this issue after upgrading 2 separate instances to 0.128

I thought it was related to how the settings are kept in local storage, and made a followup on this previous pull request

#15375 (comment)

So should this then be resolved in Version 1.129? @egutierrez-ar

@egutierrez-ar
Copy link

Hi Kernel,

I'm not a contributor to this project, I just thought this issue was somewhat related to that pull request, hence why I continued that conversation.

It might be a bigger problem than that, though.

This issue you created confirms to me that I am not the only one with this problem.

Let us wait to see what the developers see of this issue.

@DutchComputerKid
Copy link

Also getting this on 129, think this appeared after updating from 124 to 126. But yeah, the buttons don't do anything on web.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants