iPhone App with beta timeline not syncing my full 'Recents' Album #6964

Closed
opened 2026-02-05 12:40:38 +03:00 by OVERLORD · 19 comments
Owner

Originally created by @Lyra1337 on GitHub (Aug 25, 2025).

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

  • Yes

Could relate to #20938

The bug

The Backup worked OK (synced all my pictures, but had background upload issues) until I switched to beta timeline in the v1.138.x Version. Then the Backup worked much better in the background.

But in this Version I saw that there were not all my Pictures in the immich App anymore. I checked the Backup settings and saw that my "Recents" Album were unchecked and had only 144 Pictures in it. There should thousands. I also do not understand why there is only ~7000 photos displayed in immich and ~26000 photos in iCloud.

The next step for me was to update the Server to the current latest version v1.139.3.

After the Update, there are still not all my photos recognized in the Recents album.

I think, the "Recently Saved" Album appeared at the same time, but does not include all photos. Some of them are already uploaded, some not. It could be that "Recently Saved" and "Recents" in total were the same as the "Recents" before the new timeline. I made some Screenshots for this issuse, they appeared in both albums "Recents" and "Recently Saved".

I activated the Recents Album for Backup again, and some of my latest Photos were now synced, but there are still missing some ~2 weeks old photos.

All my Photos:

Image

Backup Config:

Image

Selected Albums:

Image Image

Sync Status:

Image

Albums:

Image

Thank you so much for this project!

The OS that Immich Server is running on

Ubuntu 22.04.5 LTS + Docker v28.2.2

Version of Immich Server

v1.139.3

Version of Immich Mobile App

1.139.3 build.217

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

Apple iPhone 14 Pro Max

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: nvenc
    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}:/usr/src/app/upload
      - /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, openvino] 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, openvino, openvino-wsl] 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/redis:6.2-alpine@sha256:148bb5411c184abd288d9aaed139c98123eeb8824c5d3fce03cf721db58066d8
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    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
    healthcheck:
      test: >-
        pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1;
        Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align
        --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
        echo "checksum failure count is $$Chksum";
        [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: >-
      postgres
      -c shared_preload_libraries=vectors.so
      -c 'search_path="$$user", public, vectors'
      -c logging_collector=on
      -c max_wal_size=2GB
      -c shared_buffers=512MB
      -c wal_compression=on
    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=/mnt/diskstation/photo/immich

# The location where your database files are stored
DB_DATA_LOCATION=/opt/docker/data/immich/postgres

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
TZ=Europe/Berlin

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

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=<redacted>

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

Reproduction steps

  1. Switch to beta-timeline
  2. Recents-Album is automatically removed from Selection
  3. Recents-Album is missing a large amount of photos
  4. Sync does not include most recent photos

Relevant log output


Additional information

I'm using iCloud with a shared photo library

Originally created by @Lyra1337 on GitHub (Aug 25, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes Could relate to #20938 ### The bug The Backup worked OK (synced all my pictures, but had background upload issues) until I switched to beta timeline in the v1.138.x Version. Then the Backup worked much better in the background. But in this Version I saw that there were not all my Pictures in the immich App anymore. I checked the Backup settings and saw that my "Recents" Album were unchecked and had only 144 Pictures in it. There should thousands. I also do not understand why there is only ~7000 photos displayed in immich and ~26000 photos in iCloud. The next step for me was to update the Server to the current latest version v1.139.3. After the Update, there are still not all my photos recognized in the Recents album. I think, the "Recently Saved" Album appeared at the same time, but does not include all photos. Some of them are already uploaded, some not. It could be that "Recently Saved" and "Recents" in total were the same as the "Recents" before the new timeline. I made some Screenshots for this issuse, they appeared in both albums "Recents" and "Recently Saved". I activated the Recents Album for Backup again, and some of my latest Photos were now synced, but there are still missing some ~2 weeks old photos. All my Photos: <img width="575" height="426" alt="Image" src="https://github.com/user-attachments/assets/97ad730e-b22c-4e20-af92-e4b4ff4cb269" /> Backup Config: <img width="596" height="1173" alt="Image" src="https://github.com/user-attachments/assets/ae7cd8e3-b2dc-41e7-b0c7-a4b7fc759dcb" /> Selected Albums: <img width="587" height="1272" alt="Image" src="https://github.com/user-attachments/assets/ab038560-e6dd-45f4-9a89-6223dda55d8a" /> <img width="623" height="1285" alt="Image" src="https://github.com/user-attachments/assets/5afb2a36-fedb-4a07-bf9b-2d60bbb31d37" /> Sync Status: ![Image](https://github.com/user-attachments/assets/58e0e48e-1f80-425e-ab74-e251936ca8dc) Albums: <img width="1290" height="2796" alt="Image" src="https://github.com/user-attachments/assets/53896bcf-85c2-494f-87a0-9be5e4c65439" /> **Thank you so much for this project!** ### The OS that Immich Server is running on Ubuntu 22.04.5 LTS + Docker v28.2.2 ### Version of Immich Server v1.139.3 ### Version of Immich Mobile App 1.139.3 build.217 ### Platform with the issue - [x] Server - [ ] Web - [x] Mobile ### Device make and model Apple iPhone 14 Pro Max ### 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: nvenc 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}:/usr/src/app/upload - /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, openvino] 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, openvino, openvino-wsl] 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/redis:6.2-alpine@sha256:148bb5411c184abd288d9aaed139c98123eeb8824c5d3fce03cf721db58066d8 healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' 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 healthcheck: test: >- pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1 interval: 5m start_interval: 30s start_period: 5m command: >- postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on 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=/mnt/diskstation/photo/immich # The location where your database files are stored DB_DATA_LOCATION=/opt/docker/data/immich/postgres # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List TZ=Europe/Berlin # The Immich version to use. You can pin this to a specific version like "v1.71.0" IMMICH_VERSION=release # Connection secret for postgres. You should change it to a random password # Please use only the characters `A-Za-z0-9`, without special characters or spaces DB_PASSWORD=<redacted> # The values below this line do not need to be changed ################################################################################### DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. Switch to beta-timeline 2. Recents-Album is automatically removed from Selection 3. Recents-Album is missing a large amount of photos 4. Sync does not include most recent photos ### Relevant log output ```shell ``` ### Additional information I'm using **iCloud** with a **shared photo library**
OVERLORD added the 📱mobile label 2026-02-05 12:40:38 +03:00
Author
Owner

@alextran1502 commented on GitHub (Aug 25, 2025):

@Lyra1337 For the "Recents" album, not "Recently Saved", How many assets are in there? Can you click on the search icon and type in Recents and see what the results come back with

For all the photos (~27000) assets on iCloud, are they all yours or include Shared Albums' items from others as well?

@alextran1502 commented on GitHub (Aug 25, 2025): @Lyra1337 ~~For the "Recents" album, not "Recently Saved", How many assets are in there?~~ Can you click on the search icon and type in Recents and see what the results come back with For all the photos (~27000) assets on iCloud, are they all yours or include Shared Albums' items from others as well?
Author
Owner

@Lyra1337 commented on GitHub (Aug 26, 2025):

@alextran1502 Sure:

Image
@Lyra1337 commented on GitHub (Aug 26, 2025): @alextran1502 Sure: <img width="1290" height="2796" alt="Image" src="https://github.com/user-attachments/assets/a9a25ad3-ac08-426a-9fb7-5573d526655f" />
Author
Owner

@Lyra1337 commented on GitHub (Aug 26, 2025):

@alextran1502 For the second question, I think it's best to list all my types of albums & photos:

  • old Photo Stream Albums (were migrated to shared Albums, i believe): 2 Albums, 42 Photos in total
  • private Albums: WhatsApp, Office Lens, some self created ones: 14 Albums, in total <5000 photos
  • shared Albums: 7 Albums, in total <3000 photos

Total of my personal iCloud Library:
23657 Photos + 979 Videos
Total including shared Library items:
26567 Photos + 1154 Videos

There is a mismatch in the total Album count from my screenshots and this listing, because Immich lists some extra albums, like: RAW, Spatial, Long Exposure, Hidden, Videos, Live Photos, ...

The immich Server stats lists 26755 Photos and 1158 Videos for my account. (I deleted some huge videos from iCloud, so there is no Problem about the larger video count).

@Lyra1337 commented on GitHub (Aug 26, 2025): @alextran1502 For the second question, I think it's best to list all my types of albums & photos: - old Photo Stream Albums (were migrated to shared Albums, i believe): 2 Albums, 42 Photos in total - private Albums: WhatsApp, Office Lens, some self created ones: 14 Albums, in total <5000 photos - shared Albums: 7 Albums, in total <3000 photos Total of my personal iCloud Library: 23657 Photos + 979 Videos Total including shared Library items: 26567 Photos + 1154 Videos There is a mismatch in the total Album count from my screenshots and this listing, because Immich lists some extra albums, like: RAW, Spatial, Long Exposure, Hidden, Videos, Live Photos, ... The immich Server stats lists 26755 Photos and 1158 Videos for my account. (I deleted some huge videos from iCloud, so there is no Problem about the larger video count).
Author
Owner

@Lyra1337 commented on GitHub (Aug 26, 2025):

My Photos / iCloud Setup:
iCloud Photos: yes
Optimize iPhone Storage: yes
Shared Library: yes, with one iCloud Family Member
Shared Albums: yes

@Lyra1337 commented on GitHub (Aug 26, 2025): My Photos / iCloud Setup: iCloud Photos: yes Optimize iPhone Storage: yes Shared Library: yes, with one iCloud Family Member Shared Albums: yes
Author
Owner

@Lyra1337 commented on GitHub (Aug 26, 2025):

After comparing the contents of the Albums "Recents" and "Recently Saved" with the iCloud Library, it looks like the following:
"Recents": Contains all the Photos I took with my iPhone Camera and Screenshots I took on my iPhone
"Recently Saved": Contains Photos saved by WhatsApp, Photos from the Shared Library, Screenshots, Saved from Safari

It's strange that the Screenshots appear in both Albums.


But there is still the "total count" problem: The combined count of all photos from the Albums does not match the total count of my photos in the iCloud Library.

I don't know anymore if this Problem was already there when I started using Immich. My initial add of all my photos was by using a full backup of my library via the CLI-tool. After that finished, I started using the app and thought, I could resume at this state, but the app re-uploaded all my photos to detect that all my photos were already uploaded. So i let the upload run for several nights to get the app in sync with the server.

@Lyra1337 commented on GitHub (Aug 26, 2025): After comparing the contents of the Albums "Recents" and "Recently Saved" with the iCloud Library, it looks like the following: "Recents": Contains all the Photos I took with my iPhone Camera and Screenshots I took on my iPhone "Recently Saved": Contains Photos saved by WhatsApp, Photos from the Shared Library, Screenshots, Saved from Safari It's strange that the Screenshots appear in both Albums. --- But there is still the "total count" problem: The combined count of all photos from the Albums does not match the total count of my photos in the iCloud Library. I don't know anymore if this Problem was already there when I started using Immich. My initial add of all my photos was by using a full backup of my library via the CLI-tool. After that finished, I started using the app and thought, I could resume at this state, but the app re-uploaded all my photos to detect that all my photos were already uploaded. So i let the upload run for several nights to get the app in sync with the server.
Author
Owner

@alextran1502 commented on GitHub (Aug 26, 2025):

Can you help me share the mobile app log?

@alextran1502 commented on GitHub (Aug 26, 2025): Can you help me share the mobile app log?
Author
Owner

@alextran1502 commented on GitHub (Aug 26, 2025):

@shenlong-tanwen do you have any idea?

@alextran1502 commented on GitHub (Aug 26, 2025): @shenlong-tanwen do you have any idea?
Author
Owner

@shenlong-tanwen commented on GitHub (Aug 26, 2025):

@Lyra1337 "Recents" is everything available locally on your device. "Recently saved" are those on your device that did not come from your devices camera. I don't think this is specific to the beta timeline. Can you go into setting, disable beta timeline and check if the older implementation detects all of your assets?

@shenlong-tanwen commented on GitHub (Aug 26, 2025): @Lyra1337 "Recents" is everything available locally on your device. "Recently saved" are those on your device that did not come from your devices camera. I don't think this is specific to the beta timeline. Can you go into setting, disable beta timeline and check if the older implementation detects all of your assets?
Author
Owner

@Drudoo commented on GitHub (Aug 29, 2025):

I'm having the same issue, disabling beta timeline makes "Recently" upload without issues.

@Drudoo commented on GitHub (Aug 29, 2025): I'm having the same issue, disabling beta timeline makes "Recently" upload without issues.
Author
Owner

@alextran1502 commented on GitHub (Aug 31, 2025):

@shenlong-tanwen this issue is rather odd, is there any logs we can add to see if we accidentally filter out the assets?

@alextran1502 commented on GitHub (Aug 31, 2025): @shenlong-tanwen this issue is rather odd, is there any logs we can add to see if we accidentally filter out the assets?
Author
Owner

@shenlong-tanwen commented on GitHub (Aug 31, 2025):

@Drudoo / @Lyra1337 Can you try going into Settings -> Beta Sync Stats -> Sync Local and check if all the assets of your recents album are properly displayed in the app?

Also, @Drudoo, does the app not upload the "Recent" items or does it not show the assets in the app at all?

@shenlong-tanwen commented on GitHub (Aug 31, 2025): @Drudoo / @Lyra1337 Can you try going into Settings -> Beta Sync Stats -> Sync Local and check if all the assets of your recents album are properly displayed in the app? Also, @Drudoo, does the app not upload the "Recent" items or does it not show the assets in the app at all?
Author
Owner

@Drudoo commented on GitHub (Sep 1, 2025):

@shenlong-tanwen The issue resolved itself, after the latest update. I Disabled beta-timeline, restarted the app, enabled beta-timeline and let the app hash all the images. After the value of local assets and hashed assets were the same, the images updated it everything seems to be working now.

@Drudoo commented on GitHub (Sep 1, 2025): @shenlong-tanwen The issue resolved itself, after the latest update. I Disabled beta-timeline, restarted the app, enabled beta-timeline and let the app hash all the images. After the value of local assets and hashed assets were the same, the images updated it everything seems to be working now.
Author
Owner

@Lyra1337 commented on GitHub (Sep 1, 2025):

I updated immich to the latest version, here are the logs from my mobile app:

Immich_log_2025-09-01T155527.358730.log

@Lyra1337 commented on GitHub (Sep 1, 2025): I updated immich to the latest version, here are the logs from my mobile app: [Immich_log_2025-09-01T155527.358730.log](https://github.com/user-attachments/files/22079600/Immich_log_2025-09-01T155527.358730.log)
Author
Owner

@Lyra1337 commented on GitHub (Sep 1, 2025):

@shenlong-tanwen I clicked Sync Local, but Recents is still 191 Photos.

I will now add "Recently Saved" to my backuped albums list.

Maybe the solution is to have a new "fake" album displayed in immich which internally resolves to all photos in the library.

@Lyra1337 commented on GitHub (Sep 1, 2025): @shenlong-tanwen I clicked Sync Local, but Recents is still 191 Photos. I will now add "Recently Saved" to my backuped albums list. Maybe the solution is to have a new "fake" album displayed in immich which internally resolves to all photos in the library.
Author
Owner

@shenlong-tanwen commented on GitHub (Sep 1, 2025):

@shenlong-tanwen I clicked Sync Local, but Recents is still 191 Photos.
Maybe the solution is to have a new "fake" album displayed in immich which internally resolves to all photos in the library.

"Recents" was supposed to be that lol. Thanks for the logs. Can see some errors there. I'll check if we can handle them. But from the logs, looks like some assets have weird date time values. I can also see some hashing failures.

@shenlong-tanwen commented on GitHub (Sep 1, 2025): > [@shenlong-tanwen](https://github.com/shenlong-tanwen) I clicked Sync Local, but Recents is still 191 Photos. > Maybe the solution is to have a new "fake" album displayed in immich which internally resolves to all photos in the library. "Recents" was supposed to be that lol. Thanks for the logs. Can see some errors there. I'll check if we can handle them. But from the logs, looks like some assets have weird date time values. I can also see some hashing failures.
Author
Owner

@Lyra1337 commented on GitHub (Sep 1, 2025):

@shenlong-tanwen Oh ok. My Photo library has some photos in it with "unix timestamp = 0" dates in it.

@Lyra1337 commented on GitHub (Sep 1, 2025): @shenlong-tanwen Oh ok. My Photo library has some photos in it with "unix timestamp = 0" dates in it.
Author
Owner

@Lyra1337 commented on GitHub (Sep 1, 2025):

If you need some information about specific photos or other information, I will provide every information or file you need.

@Lyra1337 commented on GitHub (Sep 1, 2025): If you need some information about specific photos or other information, I will provide every information or file you need.
Author
Owner

@Lyra1337 commented on GitHub (Sep 1, 2025):

I saw an app update and resynced remote and local. Here are the logs for that.

Immich_log_2025-09-01T162227.980542.log

@Lyra1337 commented on GitHub (Sep 1, 2025): I saw an app update and resynced remote and local. Here are the logs for that. [Immich_log_2025-09-01T162227.980542.log](https://github.com/user-attachments/files/22079967/Immich_log_2025-09-01T162227.980542.log)
Author
Owner

@Lyra1337 commented on GitHub (Sep 1, 2025):

I saw one video in my library with the time stamp "22. February 1333897". It's a video i made with ffmpeg, so there could be an issue. Even when i try to change the date with the Apple Photos App, it crashes.

Now I removed the video from my library and also from the "Recently Deleted" and the problem looks solved!

The number of items in "Recents" equals the number of items in my Photos app.

the broken video:

Image

Some work to do...

Image

27820 Photos in "Recents":

Image
@Lyra1337 commented on GitHub (Sep 1, 2025): I saw one video in my library with the time stamp "22. February 1333897". It's a video i made with ffmpeg, so there could be an issue. Even when i try to change the date with the Apple Photos App, it crashes. Now I removed the video from my library and also from the "Recently Deleted" and the problem looks solved! The number of items in "Recents" equals the number of items in my Photos app. ## the broken video: <img width="1290" height="2029" alt="Image" src="https://github.com/user-attachments/assets/84060872-bd8c-40ee-bdea-a5dcbb2a7b17" /> ## Some work to do... <img width="1290" height="2796" alt="Image" src="https://github.com/user-attachments/assets/8236d4a1-6418-4b08-a36e-e11aab2fb7d8" /> ## 27820 Photos in "Recents": <img width="1290" height="2796" alt="Image" src="https://github.com/user-attachments/assets/c54a509e-1d46-485f-87c8-3a64c619957f" />
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#6964