[BUG] iOS app crash on scroll (1.49.0) #726

Closed
opened 2026-02-04 22:08:48 +03:00 by OVERLORD · 10 comments
Owner

Originally created by @yznts on GitHub (Mar 1, 2023).

The bug

iOS app just crushing on open after few seconds. In that few seconds, app feels "laggy", it feels like it's trying to loads everything in once (I have >5k photos and videos in the library). Also, I see that app crashes only on scroll.

Attaching recording here:

https://user-images.githubusercontent.com/17050536/222144941-f885bb5b-ed84-4a95-ab16-3acb543be77d.mp4

The OS that Immich Server is running on

macOS 10.15.7

Version of Immich Server

v1.49.0

Version of Immich Mobile App

v1.49.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

version: "3.8"

services:
  immich-server:
    container_name: immich_server
    image: altran1502/immich-server:release
    entrypoint: ["/bin/sh", "./start-server.sh"]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
    env_file:
      - .env
    environment:
      - NODE_ENV=production
    depends_on:
      - redis
      - database
    restart: always

  immich-microservices:
    container_name: immich_microservices
    image: altran1502/immich-server:release
    entrypoint: ["/bin/sh", "./start-microservices.sh"]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
    env_file:
      - .env
    environment:
      - NODE_ENV=production
    depends_on:
      - redis
      - database
    restart: always

  immich-machine-learning:
    container_name: immich_machine_learning
    image: altran1502/immich-machine-learning:release
    entrypoint: ["/bin/sh", "./entrypoint.sh"]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
    env_file:
      - .env
    environment:
      - NODE_ENV=production
    depends_on:
      - database
    restart: always

  immich-web:
    container_name: immich_web
    image: altran1502/immich-web:release
    entrypoint: ["/bin/sh", "./entrypoint.sh"]
    env_file:
      - .env
    restart: always

  redis:
    container_name: immich_redis
    image: redis:6.2
    restart: always

  database:
    container_name: immich_postgres
    image: postgres:14
    env_file:
      - .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

  immich-proxy:
    container_name: immich_proxy
    image: altran1502/immich-proxy:release
    environment:
      # Make sure these values get passed through from the env file
      - IMMICH_SERVER_URL
      - IMMICH_WEB_URL
    ports:
      - 2283:8080
    logging:
      driver: none
    depends_on:
      - immich-server
    restart: always

volumes:
  pgdata:

Your .env content

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

DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE_NAME=immich

# Optional Database settings:
# DB_PORT=5432

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

REDIS_HOSTNAME=immich_redis

# Optional Redis settings:
# REDIS_PORT=6379
# REDIS_DBINDEX=0
# REDIS_PASSWORD=
# REDIS_SOCKET=

###################################################################################
# Upload File Config
###################################################################################

UPLOAD_LOCATION=/Users/plex/Photos

###################################################################################
# Log message level - [simple|verbose]
###################################################################################

LOG_LEVEL=simple

###################################################################################
# Reverse Geocoding
####################################################################################

# DISABLE_REVERSE_GEOCODING=false

# Reverse geocoding is done locally which has a small impact on memory usage
# This memory usage can be altered by changing the REVERSE_GEOCODING_PRECISION variable
# This ranges from 0-3 with 3 being the most precise
# 3 - Cities > 500 population: ~200MB RAM
# 2 - Cities > 1000 population: ~150MB RAM
# 1 - Cities > 5000 population: ~80MB RAM
# 0 - Cities > 15000 population: ~40MB RAM

# REVERSE_GEOCODING_PRECISION=3

####################################################################################
# WEB - Optional
####################################################################################

# Custom message on the login page, should be written in HTML form.
# For example PUBLIC_LOGIN_PAGE_MESSAGE="This is a demo instance of Immich.<br><br>Email: <i>demo@demo.de</i><br>Password: <i>demo</i>"

PUBLIC_LOGIN_PAGE_MESSAGE="Cloud Photos"

Reproduction steps

1. Upload lots of photos and videos (>5k in my case)
2. Open mobile app
3. Scroll

Additional information

Also, I see some another issues. As an example, I can scroll up to 2022, while my library actually starts from 2017 (might be related to metadata extraction?). Might be related to the iOS crash?

Originally created by @yznts on GitHub (Mar 1, 2023). ### The bug iOS app just crushing on open after few seconds. In that few seconds, app feels "laggy", it feels like it's trying to loads everything in once (I have >5k photos and videos in the library). Also, I see that app crashes only on scroll. Attaching recording here: https://user-images.githubusercontent.com/17050536/222144941-f885bb5b-ed84-4a95-ab16-3acb543be77d.mp4 ### The OS that Immich Server is running on macOS 10.15.7 ### Version of Immich Server v1.49.0 ### Version of Immich Mobile App v1.49.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: altran1502/immich-server:release entrypoint: ["/bin/sh", "./start-server.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - .env environment: - NODE_ENV=production depends_on: - redis - database restart: always immich-microservices: container_name: immich_microservices image: altran1502/immich-server:release entrypoint: ["/bin/sh", "./start-microservices.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - .env environment: - NODE_ENV=production depends_on: - redis - database restart: always immich-machine-learning: container_name: immich_machine_learning image: altran1502/immich-machine-learning:release entrypoint: ["/bin/sh", "./entrypoint.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - .env environment: - NODE_ENV=production depends_on: - database restart: always immich-web: container_name: immich_web image: altran1502/immich-web:release entrypoint: ["/bin/sh", "./entrypoint.sh"] env_file: - .env restart: always redis: container_name: immich_redis image: redis:6.2 restart: always database: container_name: immich_postgres image: postgres:14 env_file: - .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 immich-proxy: container_name: immich_proxy image: altran1502/immich-proxy:release environment: # Make sure these values get passed through from the env file - IMMICH_SERVER_URL - IMMICH_WEB_URL ports: - 2283:8080 logging: driver: none depends_on: - immich-server restart: always volumes: pgdata: ``` ### Your .env content ```Shell ################################################################################### # Database ################################################################################### DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=postgres DB_DATABASE_NAME=immich # Optional Database settings: # DB_PORT=5432 ################################################################################### # Redis ################################################################################### REDIS_HOSTNAME=immich_redis # Optional Redis settings: # REDIS_PORT=6379 # REDIS_DBINDEX=0 # REDIS_PASSWORD= # REDIS_SOCKET= ################################################################################### # Upload File Config ################################################################################### UPLOAD_LOCATION=/Users/plex/Photos ################################################################################### # Log message level - [simple|verbose] ################################################################################### LOG_LEVEL=simple ################################################################################### # Reverse Geocoding #################################################################################### # DISABLE_REVERSE_GEOCODING=false # Reverse geocoding is done locally which has a small impact on memory usage # This memory usage can be altered by changing the REVERSE_GEOCODING_PRECISION variable # This ranges from 0-3 with 3 being the most precise # 3 - Cities > 500 population: ~200MB RAM # 2 - Cities > 1000 population: ~150MB RAM # 1 - Cities > 5000 population: ~80MB RAM # 0 - Cities > 15000 population: ~40MB RAM # REVERSE_GEOCODING_PRECISION=3 #################################################################################### # WEB - Optional #################################################################################### # Custom message on the login page, should be written in HTML form. # For example PUBLIC_LOGIN_PAGE_MESSAGE="This is a demo instance of Immich.<br><br>Email: <i>demo@demo.de</i><br>Password: <i>demo</i>" PUBLIC_LOGIN_PAGE_MESSAGE="Cloud Photos" ``` ### Reproduction steps ```bash 1. Upload lots of photos and videos (>5k in my case) 2. Open mobile app 3. Scroll ``` ### Additional information Also, I see some another issues. As an example, I can scroll up to 2022, while my library actually starts from 2017 (might be related to metadata extraction?). Might be related to the iOS crash?
Author
Owner

@bo0tzz commented on GitHub (Mar 1, 2023):

Can you update the app and the server to the latest release and see if you still have this issue?

@bo0tzz commented on GitHub (Mar 1, 2023): Can you update the app and the server to the latest release and see if you still have this issue?
Author
Owner

@alextran1502 commented on GitHub (Mar 1, 2023):

Can you also try to disable foreground back up and see if it still crash on scroll?

@alextran1502 commented on GitHub (Mar 1, 2023): Can you also try to disable foreground back up and see if it still crash on scroll?
Author
Owner

@yznts commented on GitHub (Mar 1, 2023):

Sure, I'll check and will back to you asap

@yznts commented on GitHub (Mar 1, 2023): Sure, I'll check and will back to you asap
Author
Owner

@yznts commented on GitHub (Mar 1, 2023):

Still a thing, unfortunately.

Attaching recording here:

https://user-images.githubusercontent.com/17050536/222164816-f0a6516a-20db-42f4-bea1-1a2a48152158.mp4

@yznts commented on GitHub (Mar 1, 2023): Still a thing, unfortunately. Attaching recording here: https://user-images.githubusercontent.com/17050536/222164816-f0a6516a-20db-42f4-bea1-1a2a48152158.mp4
Author
Owner

@alextran1502 commented on GitHub (Mar 1, 2023):

Can you check the log on the mobile app and give us that information? You can export the log and attach to the issue here

@alextran1502 commented on GitHub (Mar 1, 2023): Can you check the log on the mobile app and give us that information? You can export the log and attach to the issue here
Author
Owner

@yznts commented on GitHub (Mar 1, 2023):

Somehow I'm unable to export logs. It's just failing. Anyway, I don't see any errors in the presented logs. I cleared logs before reproducing the issue to have a clear view what happens.

https://user-images.githubusercontent.com/17050536/222189718-dfc1d92c-efe1-40bc-bd82-a0da719ff670.mp4

@yznts commented on GitHub (Mar 1, 2023): Somehow I'm unable to export logs. It's just failing. Anyway, I don't see any errors in the presented logs. I cleared logs before reproducing the issue to have a clear view what happens. https://user-images.githubusercontent.com/17050536/222189718-dfc1d92c-efe1-40bc-bd82-a0da719ff670.mp4
Author
Owner

@rardxyz commented on GitHub (Mar 2, 2023):

I also encountered this one before. I notice it crashes if Im opening the app after backing up a large number of photos/videos. It only crashes while scrolling recently uploaded, if you scroll immediately to pics months before, it wont crash. I hope that helps.

@rardxyz commented on GitHub (Mar 2, 2023): I also encountered this one before. I notice it crashes if Im opening the app after backing up a large number of photos/videos. It only crashes while scrolling recently uploaded, if you scroll immediately to pics months before, it wont crash. I hope that helps.
Author
Owner

@yznts commented on GitHub (Mar 2, 2023):

I'll try to compile and check by myself with remote debugging on the weekends, if no one will be able to reproduce the problem.

@yznts commented on GitHub (Mar 2, 2023): I'll try to compile and check by myself with remote debugging on the weekends, if no one will be able to reproduce the problem.
Author
Owner

@alextran1502 commented on GitHub (Mar 27, 2023):

Can you help check the new version to see if the issue has been resolved?

@alextran1502 commented on GitHub (Mar 27, 2023): Can you help check the new version to see if the issue has been resolved?
Author
Owner

@yznts commented on GitHub (Apr 6, 2023):

Sorry for inactivity.
Yes, problem solved for me with the latest releases. Scrolling is still laggy for me, but it works without crashes!

P.S. Thanks a lot for your work! Finally I can use something other than iCloud :)

@yznts commented on GitHub (Apr 6, 2023): Sorry for inactivity. Yes, problem solved for me with the latest releases. Scrolling is still laggy for me, but it works without crashes! P.S. Thanks a lot for your work! Finally I can use something other than iCloud :)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#726