Skip to content

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

@Alexanderkocha

Description

@Alexanderkocha

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions