Regression: Unable to show images infos for remote assets #6967

Closed
opened 2026-02-05 12:41:14 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @Chuckame on GitHub (Aug 25, 2025).

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

  • Yes

The bug

Under beta timeline (not sure if applicable outside the beta), I'm not able to see the info bottom panel for assets that are present in both local and remote.

It wasn't the case with 1.138.1, so I suppose it's related to the "'New image rendering pipeline" which displays first the local asset.

The OS that Immich Server is running on

debian

Version of Immich Server

1.139.2, 1.139.3

Version of Immich Mobile App

1.139.2 build 3007, 1.139.3 build 3008

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

Pixel 6A

Your docker-compose.yml content

services:
  server:
    image: ghcr.io/immich-app/immich-server:v1.139.3
    volumes:
      - immich_data:/usr/src/app/upload
      - immich_thumbnails:/usr/src/app/upload/thumbs
    devices:
      - /dev/dri:/dev/dri # intel quicksync
    environment:
      DB_HOSTNAME: database
      REDIS_HOSTNAME: redis
      TZ: Europe/Paris
      DB_USERNAME: ${DB_USERNAME}
      DB_PASSWORD: ${DB_PASSWORD}
      DB_DATABASE_NAME: ${DB_DATABASE_NAME}
      IMMICH_MACHINE_LEARNING_URL: http://machine-learning:3003
    depends_on:
      - redis
      - database
    restart: always
    networks:
      - internal
      - caddy
    labels:
      caddy: <redacted>
      caddy.reverse_proxy: '{{upstreams http 2283}}'

  machine-learning:
    image: ghcr.io/immich-app/immich-machine-learning:v1.139.3
    volumes:
      - model-cache:/cache
    restart: always
    networks:
      - internal

  redis:
    image: docker.io/valkey/valkey:8-bookworm@sha256:facc1d2c3462975c34e10fccb167bfa92b0e0dbd992fc282c29a61c3243afb11
    restart: always
    healthcheck:
      test: redis-cli ping || exit 1
    networks:
      - internal

  database:
    image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:32324a2f41df5de9efe1af166b7008c3f55646f8d0e00d9550c16c9822366b4a
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      - pgdata:/var/lib/postgresql/data
    restart: always
    networks:
      - internal

volumes:
  pgdata:
  model-cache:
  immich_data:
    driver_opts:
      o: username=${STORAGE_USER},password=${STORAGE_PASSWORD},rw,noperm
      type: cifs
      device: //${STORAGE_ADDRESS}/Photos/immich
  immich_thumbnails:
    driver_opts:
      o: username=${STORAGE_USER},password=${STORAGE_PASSWORD},rw
      type: cifs
      device: //${STORAGE_ADDRESS}/immich-thumbnails

networks:
  caddy:
    external: true
  internal:

Your .env content

PUID=33
PGID=33
NFS_SERVER=<..>
DB_PASSWORD=<..>
DB_HOSTNAME=database
DB_USERNAME=postgres
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=redis
#LOG_LEVEL=debug

Reproduction steps

  1. open the app
  2. click on an image
  3. you can go to the info panel only by sliding your finger to the top (no info button)
  4. close the info
  5. then you cannot access anymore the info panel for any image

Relevant log output


Additional information

No response

Originally created by @Chuckame on GitHub (Aug 25, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug Under beta timeline (not sure if applicable outside the beta), I'm not able to see the info bottom panel for assets that are present in both local and remote. It wasn't the case with 1.138.1, so I suppose it's related to the "'New image rendering pipeline" which displays first the local asset. ### The OS that Immich Server is running on debian ### Version of Immich Server 1.139.2, 1.139.3 ### Version of Immich Mobile App 1.139.2 build 3007, 1.139.3 build 3008 ### Platform with the issue - [ ] Server - [ ] Web - [ ] Mobile ### Device make and model Pixel 6A ### Your docker-compose.yml content ```YAML services: server: image: ghcr.io/immich-app/immich-server:v1.139.3 volumes: - immich_data:/usr/src/app/upload - immich_thumbnails:/usr/src/app/upload/thumbs devices: - /dev/dri:/dev/dri # intel quicksync environment: DB_HOSTNAME: database REDIS_HOSTNAME: redis TZ: Europe/Paris DB_USERNAME: ${DB_USERNAME} DB_PASSWORD: ${DB_PASSWORD} DB_DATABASE_NAME: ${DB_DATABASE_NAME} IMMICH_MACHINE_LEARNING_URL: http://machine-learning:3003 depends_on: - redis - database restart: always networks: - internal - caddy labels: caddy: <redacted> caddy.reverse_proxy: '{{upstreams http 2283}}' machine-learning: image: ghcr.io/immich-app/immich-machine-learning:v1.139.3 volumes: - model-cache:/cache restart: always networks: - internal redis: image: docker.io/valkey/valkey:8-bookworm@sha256:facc1d2c3462975c34e10fccb167bfa92b0e0dbd992fc282c29a61c3243afb11 restart: always healthcheck: test: redis-cli ping || exit 1 networks: - internal database: image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:32324a2f41df5de9efe1af166b7008c3f55646f8d0e00d9550c16c9822366b4a environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' volumes: - pgdata:/var/lib/postgresql/data restart: always networks: - internal volumes: pgdata: model-cache: immich_data: driver_opts: o: username=${STORAGE_USER},password=${STORAGE_PASSWORD},rw,noperm type: cifs device: //${STORAGE_ADDRESS}/Photos/immich immich_thumbnails: driver_opts: o: username=${STORAGE_USER},password=${STORAGE_PASSWORD},rw type: cifs device: //${STORAGE_ADDRESS}/immich-thumbnails networks: caddy: external: true internal: ``` ### Your .env content ```Shell PUID=33 PGID=33 NFS_SERVER=<..> DB_PASSWORD=<..> DB_HOSTNAME=database DB_USERNAME=postgres DB_DATABASE_NAME=immich REDIS_HOSTNAME=redis #LOG_LEVEL=debug ``` ### Reproduction steps 1. open the app 2. click on an image 3. you can go to the info panel only by sliding your finger to the top (no info button) 4. close the info 6. then you cannot access anymore the info panel for any image ### Relevant log output ```shell ``` ### Additional information _No response_
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#6967