Unable to add partner photos to albums on mobile apps #7186

Open
opened 2026-02-05 12:51:18 +03:00 by OVERLORD · 6 comments
Owner

Originally created by @thoja21 on GitHub (Sep 14, 2025).

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

Missing option to add partner photos/videos to an album on iOS and Android versions of the app in 1.142.0.

On older versions (1.141.1 and older) when a user is viewing partner photos or videos a '+' icon would be shown at the top-right of the app to allow them to add the media to an album. This no longer appears.

Likewise, when on older versions, selecting multiple partner media allowed for the option to add these to an album. This no longer appears and the only options are to share or download.

The web app (latest version) still allows users to add partner media to albums when multi-selecting items.

The OS that Immich Server is running on

Ubuntu 22.04 arm64

Version of Immich Server

1.140.1

Version of Immich Mobile App

1.142.0

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

No response

Your docker-compose.yml content

#
# WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose
#
# Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${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, openvino, rknn] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    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:fea8b3e67b15729d4bb70589eb03367bab9ad1ee89c876f54327fc7c6e618571
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:8d292bdb796aa58bbbaa47fe971c8516f6f57d6a47e7172e62754feb6ed4e7b0
    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 isn't stored on SSDs
      # DB_STORAGE_TYPE: 'HDD'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${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 at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=./library
# The location where your database files are stored
DB_DATA_LOCATION=./postgres

# The Immich version to use. You can pin this to a specific version like "v1.71.0".
IMMICH_VERSION=v1.141.1

# Connection secret for postgres. You should change it to a random password
DB_PASSWORD=xxxx

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=xxxx
DB_DATABASE_NAME=xxxx

Reproduction steps

  1. Create two accounts (account 'A' & account 'B').
  2. Upload photos on account 'B'.
  3. Add account 'A' as a partner on account 'B'
  4. Account 'A' is not able to add photos from account 'B' to albums
    ...

Relevant log output


Additional information

Older apps (1.141.1 and older):

Plus icon visible when viewing partner photo circled in red:

Image

Option to add opened partner media to album:

Image

Able to add multiple partner media to album:

Image

Latest version (1.142.0):

Cannot add opened partner item to album.

Image Image

Missing option to add multiple partner items to album:

Image

The only way this is possible in 1.142.0 is by having partner media appear in the timeline, which is not always wanted.

Originally created by @thoja21 on GitHub (Sep 14, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug Missing option to add partner photos/videos to an album on iOS and Android versions of the app in 1.142.0. On older versions (1.141.1 and older) when a user is viewing partner photos or videos a '+' icon would be shown at the top-right of the app to allow them to add the media to an album. This no longer appears. Likewise, when on older versions, selecting multiple partner media allowed for the option to add these to an album. This no longer appears and the only options are to share or download. The web app (latest version) still allows users to add partner media to albums when multi-selecting items. ### The OS that Immich Server is running on Ubuntu 22.04 arm64 ### Version of Immich Server 1.140.1 ### Version of Immich Mobile App 1.142.0 ### Platform with the issue - [ ] Server - [ ] Web - [x] Mobile ### Device make and model _No response_ ### Your docker-compose.yml content ```YAML # # WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose # # Make sure to use the docker-compose.yml of the current release: # # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml # # The compose file on main may not be compatible with the latest release. name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.transcoding.yml # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${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, openvino, rknn] to the image tag. # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable 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:fea8b3e67b15729d4bb70589eb03367bab9ad1ee89c876f54327fc7c6e618571 healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:8d292bdb796aa58bbbaa47fe971c8516f6f57d6a47e7172e62754feb6ed4e7b0 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 isn't stored on SSDs # DB_STORAGE_TYPE: 'HDD' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data shm_size: 128mb restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables # The location where your uploaded files are stored UPLOAD_LOCATION=./library # The location where your database files are stored DB_DATA_LOCATION=./postgres # The Immich version to use. You can pin this to a specific version like "v1.71.0". IMMICH_VERSION=v1.141.1 # Connection secret for postgres. You should change it to a random password DB_PASSWORD=xxxx # The values below this line do not need to be changed ################################################################################### DB_USERNAME=xxxx DB_DATABASE_NAME=xxxx ``` ### Reproduction steps 1. Create two accounts (account 'A' & account 'B'). 2. Upload photos on account 'B'. 3. Add account 'A' as a partner on account 'B' 4. Account 'A' is not able to add photos from account 'B' to albums ... ### Relevant log output ```shell ``` ### Additional information **Older apps (1.141.1 and older):** Plus icon visible when viewing partner photo circled in red: <img width="323" height="720" alt="Image" src="https://github.com/user-attachments/assets/d63f2e85-9ff8-4f78-9aff-a9ffd6d35f06" /> --- Option to add opened partner media to album: <img width="323" height="720" alt="Image" src="https://github.com/user-attachments/assets/d6e0fe55-f57a-4831-b7cf-d89ca818acdc" /> --- Able to add multiple partner media to album: <img width="323" height="720" alt="Image" src="https://github.com/user-attachments/assets/9e48913f-8920-4b3d-83f7-6c0586799dcb" /> --- **Latest version (1.142.0):** Cannot add opened partner item to album. <img width="323" height="720" alt="Image" src="https://github.com/user-attachments/assets/1d213a03-3816-48db-9ec0-efab4d8c43d0" /> <img width="323" height="720" alt="Image" src="https://github.com/user-attachments/assets/f4cdbe56-07ca-4bf8-8c50-3daa56f85668" /> --- Missing option to add multiple partner items to album: <img width="323" height="720" alt="Image" src="https://github.com/user-attachments/assets/b736f4b0-ed59-413e-a036-849ae41855c4" /> --- The only way this is possible in 1.142.0 is by having partner media appear in the timeline, which is not always wanted.
Author
Owner

@Charliopoulos commented on GitHub (Sep 18, 2025):

Same here. But also on android mobile and on PC. The + Symbol disappeared.
To make it worse, it just happened when I was trying to convince my family to move from google to immich... did not end well 😀

@Charliopoulos commented on GitHub (Sep 18, 2025): Same here. But also on android mobile and on PC. The + Symbol disappeared. To make it worse, it just happened when I was trying to convince my family to move from google to immich... did not end well 😀
Author
Owner

@OneOfTheDans commented on GitHub (Oct 5, 2025):

My wife reported this is still an issue in the new 2.0.1. For us, this was THE killer feature of Immich. All family photos are available via Partner Sharing for her to make a family photo album.

@OneOfTheDans commented on GitHub (Oct 5, 2025): My wife reported this is still an issue in the new 2.0.1. For us, this was THE killer feature of Immich. All family photos are available via Partner Sharing for her to make a family photo album.
Author
Owner

@cdelanchy commented on GitHub (Nov 11, 2025):

My wife also reported this (yes, wifes are the goat): this is still an issue on 2.2.3 on the mobile Android app.

However, it is possible through the Web UI (on 2.2.3 also):

  • go to a shared album with partner,
  • select inside the album a photo taken by your partner,
  • select it, and click on the "+" icon on the upper right corner and choose "add to album" or "add to shared album" and choose the album you want.

If it is possible to have the same workflow on the mobile App (Android but I don't know if this issue exists on iOS?), it would be perfect.

By the way, a huge thank you to the Immich Team: even my wife and family said it is a great app, especially since the 2.X.X!

Image
@cdelanchy commented on GitHub (Nov 11, 2025): My wife also reported this (yes, wifes are the goat): this is still an issue on 2.2.3 on the mobile Android app. However, it is possible through the Web UI (on 2.2.3 also): - go to a shared album with partner, - select inside the album a photo taken by your partner, - select it, and click on the "+" icon on the upper right corner and choose "add to album" or "add to shared album" and choose the album you want. If it is possible to have the same workflow on the mobile App (Android but I don't know if this issue exists on iOS?), it would be perfect. By the way, a huge thank you to the Immich Team: even my wife and family said it is a great app, especially since the 2.X.X! <img width="2503" height="774" alt="Image" src="https://github.com/user-attachments/assets/fdfff417-76a4-45b8-9a93-407dd7dc9620" />
Author
Owner

@tpanier commented on GitHub (Nov 15, 2025):

Same here, big thank you to everyone contributing to immich.

I really miss the ability to share my partner's photos from my phone, though.

@tpanier commented on GitHub (Nov 15, 2025): Same here, big thank you to everyone contributing to immich. I really miss the ability to share my partner's photos from my phone, though.
Author
Owner

@rixx commented on GitHub (Dec 10, 2025):

On the web UI with v2.3.1, I don't appear to be able to add partner photos to albums. Is there anything needed in terms of settings apart from having partner share open in both directions?

@rixx commented on GitHub (Dec 10, 2025): On the web UI with v2.3.1, I don't appear to be able to add partner photos to albums. Is there anything needed in terms of settings apart from having partner share open in both directions?
Author
Owner

@silvester-pari commented on GitHub (Jan 1, 2026):

Also stumbled upon this in the Android app v2.4.1 - from inside the album it is not possible to add partner photos, however from the timeline (with partner photos displayed) one can add the photo(s) to the album. It seems that here the data does not include shared photos:
72a898d89d/mobile/lib/pages/album/album_asset_selection.page.dart (L71)

Having no idea about dart or mobile development, I asked Gemini and this is what it came up with, hopefully this is somewhat useful to point in the direct direction:

The issue appears to be caused by the query in watchAssetSelectionTimeline within mobile/lib/repositories/timeline.repository.dart.

Currently, it strictly filters assets using ownerIdEqualTo(fastHash(userId)), which limits the selection to only the current user's assets. To resolve this and allow adding partner photos, the repository method needs to be updated to accept a list of user IDs (including partners) and query for assets belonging to any of those users, effectively matching the logic used in watchMultiUsersTimeline.

@silvester-pari commented on GitHub (Jan 1, 2026): Also stumbled upon this in the Android app `v2.4.1` - from inside the album it is not possible to add partner photos, however from the timeline (with partner photos displayed) one can add the photo(s) to the album. It seems that here the `data` does not include shared photos: https://github.com/immich-app/immich/blob/72a898d89db1be83a568c2c37dae9a7763229307/mobile/lib/pages/album/album_asset_selection.page.dart#L71 Having no idea about dart or mobile development, I asked Gemini and this is what it came up with, hopefully this is somewhat useful to point in the direct direction: > The issue appears to be caused by the query in `watchAssetSelectionTimeline` within `mobile/lib/repositories/timeline.repository.dart`. > Currently, it strictly filters assets using `ownerIdEqualTo(fastHash(userId))`, which limits the selection to only the current user's assets. To resolve this and allow adding partner photos, the repository method needs to be updated to accept a list of user IDs (including partners) and query for assets belonging to any of those users, effectively matching the logic used in `watchMultiUsersTimeline`.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#7186