[Beta] Timeline Grey After Updating Immich to 1.140 #7040

Closed
opened 2026-02-05 12:44:00 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @Alexanderkocha on GitHub (Aug 30, 2025).

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

  • Yes

The bug

After updating to 1.140 I am unable to view my timeline on the Android app, which was also updated.

The OS that Immich Server is running on

Proxmox LXC

Version of Immich Server

1.140

Version of Immich Mobile App

1.140

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

Android 16

Your docker-compose.yml content

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-rel>
    #extends:
      #file: hwaccel.transcoding.yml
      #service: quicksync # set to one of [nvenc, quicksync, rkmp>
    volumes:
      # Do not edit the next line. If you want to change the medi>
      - ${UPLOAD_LOCATION}:/data
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - '2283:2283'
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, rocm, >
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VE>
    # extends: # uncomment this section for hardware acceleration>
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, rocm, openvino>
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/valkey/valkey:8-bookworm@sha256:5b8f8c333bef>
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvect>
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
      # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database>
      # DB_STORAGE_TYPE: 'HDD'
    volumes:
      # Do not edit the next line. If you want to change the data>
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    shm_size: 128mb
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables >

# The location where your uploaded files are stored
UPLOAD_LOCATION=./library

# The location where your database files are stored. Network shar>
DB_DATA_LOCATION=./postgres

# To set a timezone, uncomment the next line and change Etc/UTC t>
# TZ=Etc/UTC

# The Immich version to use. You can pin this to a specific versi>
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a rando>
# Please use only the characters `A-Za-z0-9`, without special cha>
DB_PASSWORD=***********

# The values below this line do not need to be changed
#################################################################>
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

  1. Update Immich server from 1.139.3 to latest
  2. Open Immich mobile app
  3. Update mobile app from 1.139.3 to latest
    ...

Relevant log output


Additional information

Image
Originally created by @Alexanderkocha on GitHub (Aug 30, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug After updating to 1.140 I am unable to view my timeline on the Android app, which was also updated. ### The OS that Immich Server is running on Proxmox LXC ### Version of Immich Server 1.140 ### Version of Immich Mobile App 1.140 ### Platform with the issue - [ ] Server - [ ] Web - [x] Mobile ### Device make and model Android 16 ### Your docker-compose.yml content ```YAML name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-rel> #extends: #file: hwaccel.transcoding.yml #service: quicksync # set to one of [nvenc, quicksync, rkmp> volumes: # Do not edit the next line. If you want to change the medi> - ${UPLOAD_LOCATION}:/data - /etc/localtime:/etc/localtime:ro env_file: - .env ports: - '2283:2283' depends_on: - redis - database restart: always healthcheck: disable: false immich-machine-learning: container_name: immich_machine_learning # For hardware acceleration, add one of -[armnn, cuda, rocm, > # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VE> # extends: # uncomment this section for hardware acceleration> # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, rocm, openvino> volumes: - model-cache:/cache env_file: - .env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/valkey/valkey:8-bookworm@sha256:5b8f8c333bef> healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvect> environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database> # DB_STORAGE_TYPE: 'HDD' volumes: # Do not edit the next line. If you want to change the data> - ${DB_DATA_LOCATION}:/var/lib/postgresql/data shm_size: 128mb restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables > # The location where your uploaded files are stored UPLOAD_LOCATION=./library # The location where your database files are stored. Network shar> DB_DATA_LOCATION=./postgres # To set a timezone, uncomment the next line and change Etc/UTC t> # TZ=Etc/UTC # The Immich version to use. You can pin this to a specific versi> IMMICH_VERSION=release # Connection secret for postgres. You should change it to a rando> # Please use only the characters `A-Za-z0-9`, without special cha> DB_PASSWORD=*********** # The values below this line do not need to be changed #################################################################> DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. Update Immich server from 1.139.3 to latest 2. Open Immich mobile app 3. Update mobile app from 1.139.3 to latest ... ### Relevant log output ```shell ``` ### Additional information <img width="1080" height="2284" alt="Image" src="https://github.com/user-attachments/assets/9d1a42ab-9784-4813-83b9-c5bf27d05503" />
Author
Owner

@jgoclawski commented on GitHub (Aug 30, 2025):

Fixed in https://github.com/immich-app/immich/pull/21422 (not released yet)
Workaround is to manually scroll down the timeline and photos will appear.

@jgoclawski commented on GitHub (Aug 30, 2025): Fixed in https://github.com/immich-app/immich/pull/21422 (not released yet) Workaround is to manually scroll down the timeline and photos will appear.
Author
Owner

@Alexanderkocha commented on GitHub (Aug 30, 2025):

Thanks for the tip. Glad this issue is already fixed

@Alexanderkocha commented on GitHub (Aug 30, 2025): Thanks for the tip. Glad this issue is already fixed
Author
Owner

@alextran1502 commented on GitHub (Aug 30, 2025):

This bug has been fixed and will probably be released on Monday. right now the workaround is to temporarily disable the memory feature, then log out and log back in on the mobile app.

@alextran1502 commented on GitHub (Aug 30, 2025): This bug has been fixed and will probably be released on Monday. right now the workaround is to temporarily disable the memory feature, then log out and log back in on the mobile app.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#7040