[BUG] 1.91 Error when open Recently Added, Videos or Live Photos (Android) #1808

Closed
opened 2026-02-05 03:57:28 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @lukanowa on GitHub (Dec 17, 2023).

The bug

Error screen after opening Recently Added, Videos and Live Photos on Android after 1.91
Screenshot_20231217-104954

The OS that Immich Server is running on

Unraid 6.12.6

Version of Immich Server

1.91.2

Version of Immich Mobile App

1.91.0.115

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

version: "3.8"

services:
  immich-server:
    container_name: Immich-SRV
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    command: [ "start.sh", "immich" ]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always

  immich-microservices:
    container_name: Immich-MCS
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.yml
    #   service: hwaccel 
    command: [ "start.sh", "microservices" ]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    depends_on:
      - redis
      - database
    restart: always

  immich-machine-learning:
    container_name: Immich-MLR
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    volumes:
      - /mnt/user/docker_files/immich-model:/cache
    env_file:
      - .env
    restart: always

  redis:
    container_name: Immich-RDS
    image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
    restart: always

  database:
    container_name: Immich-DB
    image: tensorchord/pgvecto-rs:pg14-v0.1.11
    env_file:
      - .env
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
    volumes:
      - /mnt/user/docker_files/immich-pgdata:/var/lib/postgresql/data
    restart: always

volumes:
  immich-pgdata:
  immich-model:

Your .env content

UPLOAD_LOCATION=/mnt/user/docker_files/immich-photos

IMMICH_VERSION=release

DB_PASSWORD=************
DB_HOSTNAME=Immich-DB
DB_USERNAME=***********
DB_DATABASE_NAME=*********

REDIS_HOSTNAME=Immich-RDS

PUBLIC_LOGIN_PAGE_MESSAGE=*******

Reproduction steps

1. Open Search and Recently Added or Videos or Live Photos
2. Error screen, no photos.

Additional information

No response

Originally created by @lukanowa on GitHub (Dec 17, 2023). ### The bug Error screen after opening Recently Added, Videos and Live Photos on Android after 1.91 ![Screenshot_20231217-104954](https://github.com/immich-app/immich/assets/110633111/0adfe6a6-d2ab-4274-8602-7ce80bd1ccdf) ### The OS that Immich Server is running on Unraid 6.12.6 ### Version of Immich Server 1.91.2 ### Version of Immich Mobile App 1.91.0.115 ### Platform with the issue - [ ] Server - [ ] Web - [X] Mobile ### Your docker-compose.yml content ```YAML version: "3.8" services: immich-server: container_name: Immich-SRV image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} command: [ "start.sh", "immich" ] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env ports: - 2283:3001 depends_on: - redis - database restart: always immich-microservices: container_name: Immich-MCS image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.yml # service: hwaccel command: [ "start.sh", "microservices" ] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env depends_on: - redis - database restart: always immich-machine-learning: container_name: Immich-MLR image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} volumes: - /mnt/user/docker_files/immich-model:/cache env_file: - .env restart: always redis: container_name: Immich-RDS image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3 restart: always database: container_name: Immich-DB image: tensorchord/pgvecto-rs:pg14-v0.1.11 env_file: - .env environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} volumes: - /mnt/user/docker_files/immich-pgdata:/var/lib/postgresql/data restart: always volumes: immich-pgdata: immich-model: ``` ### Your .env content ```Shell UPLOAD_LOCATION=/mnt/user/docker_files/immich-photos IMMICH_VERSION=release DB_PASSWORD=************ DB_HOSTNAME=Immich-DB DB_USERNAME=*********** DB_DATABASE_NAME=********* REDIS_HOSTNAME=Immich-RDS PUBLIC_LOGIN_PAGE_MESSAGE=******* ``` ### Reproduction steps ```bash 1. Open Search and Recently Added or Videos or Live Photos 2. Error screen, no photos. ``` ### Additional information _No response_
Author
Owner

@nodis commented on GitHub (Dec 17, 2023):

me too

@nodis commented on GitHub (Dec 17, 2023): me too
Author
Owner

@alextran1502 commented on GitHub (Dec 17, 2023):

This mechanism is currently not working with the removal of typesense, we will add it back in the future

@alextran1502 commented on GitHub (Dec 17, 2023): This mechanism is currently not working with the removal of typesense, we will add it back in the future
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#1808