[139.2] Android Beta timeline shows no thumbnails, cannot open any assets. #6931

Closed
opened 2026-02-05 12:38:54 +03:00 by OVERLORD · 1 comment
Owner

Originally created by @tanpro260196 on GitHub (Aug 23, 2025).

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

  • Yes

The bug

Latest Android app, latest server version, using Beta Timeline.
Can't open any of the picture/video either.
Original Timeline works fine.

Image

The OS that Immich Server is running on

Ubuntu Server 24.04

Version of Immich Server

139.2

Version of Immich Mobile App

139.2 build 3007

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

Pixel 6

Your docker-compose.yml content

immich-server:
    container_name: immich_server
    network_mode: "media-net"
    user: "1000:1001"
    deploy:
      endpoint_mode: dnsrr
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    extends:
      file: hwaccel.transcoding.yml
      service: nvenc # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
    env_file:
      - .env
    depends_on:
      - redis
      - immich_postgres
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich-machine-learning
    network_mode: "media-net"
    user: "1001:1001"
    deploy:
      endpoint_mode: dnsrr
    # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-cuda
    extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
      file: hwaccel.ml.yml
      service: cuda # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
      - ./immich-machine-learning/.config:/.config
      - ./immich-machine-learning/.cache:/.cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  immich_postgres:
    container_name: immich_postgres
    network_mode: "media-net"
    user: "999:1001"
    deploy:
      endpoint_mode: dnsrr
#    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
    image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${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: always

Your .env content

Not very relevant

Reproduction steps

  1. Open Android App
  2. Switch to Beta Timeline
  3. Try to open anything remote (local assets work fine)
    ...

Relevant log output


Additional information

No response

Originally created by @tanpro260196 on GitHub (Aug 23, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug Latest Android app, latest server version, using Beta Timeline. Can't open any of the picture/video either. Original Timeline works fine. <img width="1080" height="2400" alt="Image" src="https://github.com/user-attachments/assets/15862a46-138e-4707-92f5-c6747eb1dcfb" /> ### The OS that Immich Server is running on Ubuntu Server 24.04 ### Version of Immich Server 139.2 ### Version of Immich Mobile App 139.2 build 3007 ### Platform with the issue - [ ] Server - [ ] Web - [x] Mobile ### Device make and model Pixel 6 ### Your docker-compose.yml content ```YAML immich-server: container_name: immich_server network_mode: "media-net" user: "1000:1001" deploy: endpoint_mode: dnsrr image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} extends: file: hwaccel.transcoding.yml service: nvenc # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - .env depends_on: - redis - immich_postgres restart: always healthcheck: disable: false immich-machine-learning: container_name: immich-machine-learning network_mode: "media-net" user: "1001:1001" deploy: endpoint_mode: dnsrr # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag. # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-cuda extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration file: hwaccel.ml.yml service: cuda # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache - ./immich-machine-learning/.config:/.config - ./immich-machine-learning/.cache:/.cache env_file: - .env restart: always healthcheck: disable: false immich_postgres: container_name: immich_postgres network_mode: "media-net" user: "999:1001" deploy: endpoint_mode: dnsrr # image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52 image: ghcr.io/immich-app/postgres:14-vectorchord0.4.1-pgvectors0.2.0 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${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: always ``` ### Your .env content ```Shell Not very relevant ``` ### Reproduction steps 1. Open Android App 2. Switch to Beta Timeline 3. Try to open anything remote (local assets work fine) ... ### Relevant log output ```shell ``` ### Additional information _No response_
Author
Owner

@github-actions[bot] commented on GitHub (Aug 23, 2025):

This issue has automatically been closed as it is likely a duplicate. We get a lot of duplicate threads each day, which is why we ask you in the template to confirm that you searched for duplicates before opening one. If you're sure this is not a duplicate, please leave a comment and we will reopen the thread if necessary.

@github-actions[bot] commented on GitHub (Aug 23, 2025): This issue has automatically been closed as it is likely a duplicate. We get a lot of duplicate threads each day, which is why we ask you in the template to confirm that you searched for duplicates before opening one. If you're sure this is not a duplicate, please leave a comment and we will reopen the thread if necessary.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#6931