IOS App - Downloading Image from Immich that is marked as Favourite, does not reflect in Apple Photos #3418

Closed
opened 2026-02-05 08:22:06 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @rossedlin on GitHub (Jun 6, 2024).

The bug

When downloading images that are marked as Favourite within the Immich application, it does not carry that over to Apple Photos, the image appears in Apple Photos but is not marked as a favourite image in Apple Photos.

The OS that Immich Server is running on

Windows 11 (Docker Desktop)

Version of Immich Server

v1.105.1

Version of Immich Mobile App

v1.105.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

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

  immich-microservices:
    container_name: immich_microservices
    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
    env_file:
      - .env
    environment:
      - TZ=Europe/London
    depends_on:
      - redis
      - database
    restart: always

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

  redis:
    container_name: immich_redis
    image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
    restart: always
    volumes:
      - redis-data:/data

  database:
    container_name: immich_postgres
    image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    env_file:
      - .env
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
    volumes:
      - pgdata:/var/lib/postgresql/data
    restart: always

volumes:
  pgdata:
  redis-data:
  model-cache:


Your .env content

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

REDIS_HOSTNAME=immich_redis
UPLOAD_LOCATION="***"
TYPESENSE_ENABLED=false

PUBLIC_LOGIN_PAGE_MESSAGE="***"
IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003
IMMICH_VERSION=release


Reproduction steps

1. Download an image via the IOS app that is marked as a Favourite in Immich.
2. The image in apple photos is NOT marked as favourite.

Relevant log output

No response

Additional information

No response

Originally created by @rossedlin on GitHub (Jun 6, 2024). ### The bug When downloading images that are marked as Favourite within the Immich application, it does not carry that over to Apple Photos, the image appears in Apple Photos but is not marked as a favourite image in Apple Photos. ### The OS that Immich Server is running on Windows 11 (Docker Desktop) ### Version of Immich Server v1.105.1 ### Version of Immich Mobile App v1.105.0 ### Platform with the issue - [ ] Server - [ ] Web - [X] Mobile ### Your docker-compose.yml content ```YAML services:
 immich-server:
 container_name: immich_server
 image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
 command: [ "start.sh", "immich" ]
 volumes:
 - ${UPLOAD_LOCATION}:/usr/src/app/upload
 env_file:
 - .env
 ports:
 - "3001:3001"
 depends_on:
 - redis
 - database
 restart: always

 immich-microservices:
 container_name: immich_microservices
 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
 env_file:
 - .env
 environment:
 - TZ=Europe/London
 depends_on:
 - redis
 - database
 restart: always

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

 redis:
 container_name: immich_redis
 image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
 restart: always
 volumes:
 - redis-data:/data

 database:
 container_name: immich_postgres
 image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
 env_file:
 - .env
 environment:
 POSTGRES_PASSWORD: ${DB_PASSWORD}
 POSTGRES_USER: ${DB_USERNAME}
 POSTGRES_DB: ${DB_DATABASE_NAME}
 volumes:
 - pgdata:/var/lib/postgresql/data
 restart: always

volumes:
 pgdata:
 redis-data:
 model-cache:
 ``` ### Your .env content ```Shell DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=**** DB_DATABASE_NAME=immich REDIS_HOSTNAME=immich_redis UPLOAD_LOCATION="***" TYPESENSE_ENABLED=false PUBLIC_LOGIN_PAGE_MESSAGE="***" IMMICH_WEB_URL=http://immich-web:3000 IMMICH_SERVER_URL=http://immich-server:3001 IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003 IMMICH_VERSION=release
 ``` ### Reproduction steps ```bash 1. Download an image via the IOS app that is marked as a Favourite in Immich. 2. The image in apple photos is NOT marked as favourite. ``` ### Relevant log output _No response_ ### Additional information _No response_
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#3418