[BUG] Android app memories are showing in low resolution #1998

Closed
opened 2026-02-05 04:42:01 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @greanmurk on GitHub (Jan 16, 2024).

The bug

In latest android mobile app 1.92.0 is something wrong with memories, they are showing in low resolution (blurred):

IMG_20240116_114614

I downgraded an app to 1.91.4 and memories looks fine:

IMG_20240116_114325

I also tried to upgrade to 1.92.0 again, tried clean install, the problem is back.

The OS that Immich Server is running on

Debian 11

Version of Immich Server

1.92.1

Version of Immich Mobile App

1.92.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

---
version: "3.8"
services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:release
    entrypoint: ["/bin/sh", "./start-server.sh"]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /Disk2/Media/Photo:/Disk2/Media/Photo:ro
    env_file:
      - immich.env
    ports:
      - 2283:3001    
    depends_on:
      - redis
      - database
    restart: always
  immich-microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:release
    entrypoint: ["/bin/sh", "./start-microservices.sh"]
    #command: [ "start.sh", "microservices" ]    
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /Disk2/Media/Photo:/Disk2/Media/Photo:ro      
    env_file:
      - immich.env
    depends_on:
      - redis
      - database
    restart: always
  immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:release
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - model-cache:/cache
    env_file:
      - immich.env
    restart: always
  redis:
    container_name: immich_redis
    image: redis:6.2
    restart: always
  database:
    container_name: immich_postgres
    image: tensorchord/pgvecto-rs:pg14-v0.1.11
    env_file:
      - immich.env
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      PG_DATA: /var/lib/postgresql/data
    volumes:
      - pgdata:/var/lib/postgresql/data
    restart: always
volumes:
  pgdata:
  model-cache:

Your .env content

###################################################################################
  # Database
  ###################################################################################

  DB_HOSTNAME=immich_postgres
  DB_USERNAME=postgres
  DB_PASSWORD=<password>
  DB_DATABASE_NAME=immich

  # Optional Database settings:
  # DB_PORT=5432

  ###################################################################################
  # Redis
  ###################################################################################

  REDIS_HOSTNAME=immich_redis

  ###################################################################################
  # Upload File Location
  #
  # This is the location where uploaded files are stored.
  ###################################################################################

  UPLOAD_LOCATION=/Disk2/Config/immich/upload

Reproduction steps

1. Upgrade to 1.92.0 android app
2. Open any of memories

Additional information

Phone details: Android 11, MIUI 12.5.7

This is only app issue, don't see the problem with web version on phone, nor on computer.

Originally created by @greanmurk on GitHub (Jan 16, 2024). ### The bug In latest android mobile app 1.92.0 is something wrong with memories, they are showing in low resolution (blurred): ![IMG_20240116_114614](https://github.com/immich-app/immich/assets/18441525/5532c687-6be8-4a42-af09-6eb6344deb83) I downgraded an app to 1.91.4 and memories looks fine: ![IMG_20240116_114325](https://github.com/immich-app/immich/assets/18441525/0863dafa-fbfa-4048-8754-de86ed35b315) I also tried to upgrade to 1.92.0 again, tried clean install, the problem is back. ### The OS that Immich Server is running on Debian 11 ### Version of Immich Server 1.92.1 ### Version of Immich Mobile App 1.92.0 ### Platform with the issue - [ ] Server - [ ] Web - [X] Mobile ### Your docker-compose.yml content ```YAML --- version: "3.8" services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:release entrypoint: ["/bin/sh", "./start-server.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /Disk2/Media/Photo:/Disk2/Media/Photo:ro env_file: - immich.env ports: - 2283:3001 depends_on: - redis - database restart: always immich-microservices: container_name: immich_microservices image: ghcr.io/immich-app/immich-server:release entrypoint: ["/bin/sh", "./start-microservices.sh"] #command: [ "start.sh", "microservices" ] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /Disk2/Media/Photo:/Disk2/Media/Photo:ro env_file: - immich.env depends_on: - redis - database restart: always immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:release volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - model-cache:/cache env_file: - immich.env restart: always redis: container_name: immich_redis image: redis:6.2 restart: always database: container_name: immich_postgres image: tensorchord/pgvecto-rs:pg14-v0.1.11 env_file: - immich.env environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} PG_DATA: /var/lib/postgresql/data volumes: - pgdata:/var/lib/postgresql/data restart: always volumes: pgdata: model-cache: ``` ### Your .env content ```Shell ################################################################################### # Database ################################################################################### DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=<password> DB_DATABASE_NAME=immich # Optional Database settings: # DB_PORT=5432 ################################################################################### # Redis ################################################################################### REDIS_HOSTNAME=immich_redis ################################################################################### # Upload File Location # # This is the location where uploaded files are stored. ################################################################################### UPLOAD_LOCATION=/Disk2/Config/immich/upload ``` ### Reproduction steps ```bash 1. Upgrade to 1.92.0 android app 2. Open any of memories ``` ### Additional information Phone details: Android 11, MIUI 12.5.7 This is only app issue, don't see the problem with web version on phone, nor on computer.
Author
Owner

@rbange commented on GitHub (Jan 17, 2024):

I can confirm this bug on a Pixel 6 Android 14 with app version 1.92.0 build.117 and server version 1.92.1

@rbange commented on GitHub (Jan 17, 2024): I can confirm this bug on a Pixel 6 Android 14 with app version `1.92.0 build.117` and server version `1.92.1`
Author
Owner

@MK73DS commented on GitHub (Jan 20, 2024):

I can also confirm this issue with both app and server at version 1.93.2.
This was happening since a few versions ago.
Note that if I choose in the parameters to always load images from server it shows in the correct resolution.

@MK73DS commented on GitHub (Jan 20, 2024): I can also confirm this issue with both app and server at version 1.93.2. This was happening since a few versions ago. Note that if I choose in the parameters to always load images from server it shows in the correct resolution.
Author
Owner

@SteffenAuer commented on GitHub (Jan 24, 2024):

I also have this issue, but on iOS. If I enable the Prefer Remote Images option in the advanced settings, they are shown in the correct resolution.
Both server and app are on v1.93.2

@SteffenAuer commented on GitHub (Jan 24, 2024): I also have this issue, but on iOS. If I enable the `Prefer Remote Images` option in the advanced settings, they are shown in the correct resolution. Both server and app are on v1.93.2
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#1998