Web: failed to load assets #6239

Closed
opened 2026-02-05 12:07:32 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @Tech180 on GitHub (Jun 9, 2025).

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

  • Yes

The bug

After updating to v1.134.0 and changing the proper lines in the yaml as instructed the web ui comes up with failed to load assets. However, when loading within the android app it appears that everything loaded just fine. Unfortunately, I didn't notice anything in the docker logs when looking, but i'll provide some anyway.

Image

The OS that Immich Server is running on

Debian 12

Version of Immich Server

v1.134.0

Version of Immich Mobile App

v1.134.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

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 ac>
    volumes:
      # Do not edit the next line. If you want to change the media storage location on >
      - ${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.>
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelera>
    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:e3b17ba9479deec4b7d1eeec1548a253acc5374d68>
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0
    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 >
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    #healthcheck:
    #  test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || e>
    #  interval: 5m
    #  start_interval: 30s
    #  start_period: 5m
    #command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_p>
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/>

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

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from>
# TZ=Etc/UTC

# 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=postgres

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

Reproduction steps

  1. Change docker-compose.yml
  2. Update to 134.0 from v1.132.3
  3. reboot container in proxmox

Relevant log output

Initializing Immich v1.134.0
Detected CPU Cores: 8
Starting api worker
Starting microservices worker
[Nest] 7  - 06/09/2025, 12:18:50 AM     LOG [Microservices:EventRepository] Initialized websocket server
[Nest] 7  - 06/09/2025, 12:18:50 AM     LOG [Microservices:DatabaseRepository] targetLists=1, current=1 for clip_index of 32994 rows
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:DatabaseRepository] targetLists=1, current=1 for face_index of 61528 rows
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:DatabaseRepository] Running migrations, this may take a while
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:EventRepository] Initialized websocket server
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:MetadataService] Bootstrapping metadata service
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:MetadataService] Initializing metadata service
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:MapRepository] Initializing metadata repository
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:DatabaseRepository] targetLists=1, current=1 for clip_index of 32994 rows
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:DatabaseRepository] targetLists=1, current=1 for face_index of 61528 rows
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:DatabaseRepository] Running migrations, this may take a while
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:MetadataService] Initialized local reverse geocoder
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:ServerService] Feature Flags: {
  "smartSearch": true,
  "facialRecognition": true,
  "duplicateDetection": true,
  "map": true,
  "reverseGeocoding": true,
  "importFaces": false,
  "sidecar": true,
  "search": true,
  "trash": true,
  "oauth": false,
  "oauthAutoLaunch": false,
  "passwordLogin": true,
  "configFile": false,
  "email": false
}
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}}
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:StorageService] Successfully verified system mount folder checks
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:NestFactory] Starting Nest application...
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] ClsModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] ClsCommonModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] OpenTelemetryModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] KyselyModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] KyselyCoreModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] DiscoveryModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] OpenTelemetryCoreModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] ClsRootModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] BullModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:InstanceLoader] MicroservicesModule dependencies initialized
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:NestApplication] Nest application successfully started
[Nest] 7  - 06/09/2025, 12:18:51 AM     LOG [Microservices:Bootstrap] Immich Microservices is running [v1.134.0] [production] 
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:ServerService] Feature Flags: {
  "smartSearch": true,
  "facialRecognition": true,
  "duplicateDetection": true,
  "map": true,
  "reverseGeocoding": true,
  "importFaces": false,
  "sidecar": true,
  "search": true,
  "trash": true,
  "oauth": false,
  "oauthAutoLaunch": false,
  "passwordLogin": true,
  "configFile": false,
  "email": false
}
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}}
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:StorageService] Successfully verified system mount folder checks
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:SystemConfigService] LogLevel=log (set via system config)
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:NestFactory] Starting Nest application...
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] BullModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] ClsModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] ClsCommonModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] OpenTelemetryModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] KyselyModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] KyselyCoreModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] DiscoveryModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] OpenTelemetryCoreModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] ClsRootModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] ScheduleModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] BullModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] BullModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:InstanceLoader] ApiModule dependencies initialized
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] APIKeyController {/api/api-keys}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] ActivityController {/api/activities}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/activities, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/activities, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/activities/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/activities/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] AlbumController {/api/albums}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, PATCH} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/users, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] AppController {/api}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/.well-known/immich, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/custom.css, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] AssetController {/api/assets}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/random, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/device/:deviceId, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/jobs, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] AssetMediaController {/api/assets}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/thumbnail, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/:id/video/playback, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/exist, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/assets/bulk-upload-check, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] AuthController {/api/auth}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/login, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/validateToken, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/change-password, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/logout, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/status, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/pin-code, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/pin-code, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/pin-code, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/session/unlock, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/auth/session/lock, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] DownloadController {/api/download}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/download/info, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/download/archive, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] DuplicateController {/api/duplicates}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/duplicates, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] FaceController {/api/faces}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/faces, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/faces, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/faces/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/faces/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] JobController {/api/jobs}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/jobs, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/jobs, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/jobs/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] LibraryController {/api/libraries}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/validate, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/scan, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] MapController {/api/map}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/map/markers, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/map/reverse-geocode, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] MemoryController {/api/memories}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] NotificationController {/api/notifications}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/notifications/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] NotificationAdminController {/api/admin/notifications}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/notifications, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/notifications/test-email, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/notifications/templates/:name, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] OAuthController {/api/oauth}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/authorize, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/callback, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/link, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/oauth/unlink, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] PartnerController {/api/partners}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/partners, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/partners/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] PersonController {/api/people}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/thumbnail, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/reassign, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/people/:id/merge, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] SearchController {/api/search}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/metadata, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/random, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/smart, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/explore, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/person, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/places, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/cities, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/search/suggestions, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] ServerController {/api/server}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/about, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/storage, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/ping, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/version, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/version-history, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/features, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/theme, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/config, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/media-types, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/license, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/license, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/license, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/server/version-check, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] SessionController {/api/sessions}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sessions/:id/lock, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] SharedLinkController {/api/shared-links}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/me, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, PATCH} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] StackController {/api/stacks}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] SyncController {/api/sync}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/full-sync, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/delta-sync, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/stream, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/ack, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/ack, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/sync/ack, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] SystemConfigController {/api/system-config}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config/defaults, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] SystemMetadataController {/api/system-metadata}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/system-metadata/version-check-state, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] TagController {/api/tags}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/assets, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] TimelineController {/api/timeline}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/timeline/buckets, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/timeline/bucket, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] TrashController {/api/trash}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/trash/empty, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/trash/restore, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/trash/restore/assets, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] UserAdminController {/api/admin/users}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/statistics, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/restore, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] UserController {/api/users}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, PUT} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/me/license, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/:id, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, POST} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, DELETE} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/users/:id/profile-image, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RoutesResolver] ViewController {/api/view}:
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/view/folder/unique-paths, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:RouterExplorer] Mapped {/api/view/folder, GET} route
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:NestApplication] Nest application successfully started
[Nest] 17  - 06/09/2025, 12:18:51 AM     LOG [Api:Bootstrap] Immich Server is listening on http://[::1]:2283 [v1.134.0] [production] 
[Nest] 17  - 06/09/2025, 12:18:53 AM     LOG [Api:EventRepository] Websocket Connect:    TfyFBjDZGz5j8mHRAAAB
[Nest] 17  - 06/09/2025, 12:19:25 AM     LOG [Api:EventRepository] Websocket Connect:    vvOp7jTe4xwiOlD7AAAD
[Nest] 17  - 06/09/2025, 12:19:38 AM     LOG [Api:EventRepository] Websocket Disconnect: vvOp7jTe4xwiOlD7AAAD
[Nest] 17  - 06/09/2025, 12:19:38 AM     LOG [Api:EventRepository] Websocket Connect:    nrI2Gn7pB3xXqkWoAAAF
`orderBy(..., expr)` is deprecated. Use `orderBy(..., 'asc')` or `orderBy(..., (ob) => ...)` instead.
[Nest] 17  - 06/09/2025, 12:21:58 AM     LOG [Api:EventRepository] Websocket Disconnect: TfyFBjDZGz5j8mHRAAAB
[Nest] 17  - 06/09/2025, 12:21:58 AM     LOG [Api:EventRepository] Websocket Connect:    tih1ZnTJlnsttZbvAAAH
[Nest] 17  - 06/09/2025, 12:22:00 AM     LOG [Api:EventRepository] Websocket Disconnect: tih1ZnTJlnsttZbvAAAH
[Nest] 17  - 06/09/2025, 12:22:08 AM     LOG [Api:EventRepository] Websocket Connect:    _qp5dBobbRkFeyO-AAAJ
[Nest] 17  - 06/09/2025, 12:22:33 AM     LOG [Api:SystemConfigService~2tktq98e] LogLevel=log (set via system config)
[Nest] 7  - 06/09/2025, 12:22:33 AM     LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
[Nest] 17  - 06/09/2025, 12:26:49 AM     LOG [Api:EventRepository] Websocket Disconnect: _qp5dBobbRkFeyO-AAAJ
[Nest] 17  - 06/09/2025, 12:26:50 AM     LOG [Api:EventRepository] Websocket Connect:    iVDiLoE2_3RQ_huCAAAL
[Nest] 17  - 06/09/2025, 12:28:03 AM     LOG [Api:EventRepository] Websocket Disconnect: iVDiLoE2_3RQ_huCAAAL
[Nest] 17  - 06/09/2025, 12:28:03 AM     LOG [Api:EventRepository] Websocket Connect:    lCcMkHJp0MaH8eCPAAAN
[Nest] 17  - 06/09/2025, 12:28:15 AM     LOG [Api:EventRepository] Websocket Disconnect: lCcMkHJp0MaH8eCPAAAN
[Nest] 17  - 06/09/2025, 12:28:15 AM     LOG [Api:EventRepository] Websocket Connect:    sWakDsCmhUoLsaPIAAAP
[Nest] 17  - 06/09/2025, 12:28:21 AM     LOG [Api:EventRepository] Websocket Disconnect: sWakDsCmhUoLsaPIAAAP
[Nest] 17  - 06/09/2025, 12:28:21 AM     LOG [Api:EventRepository] Websocket Connect:    D6AHk-qcjyiln0oIAAAR
[Nest] 17  - 06/09/2025, 12:29:19 AM     LOG [Api:EventRepository] Websocket Disconnect: D6AHk-qcjyiln0oIAAAR
[Nest] 17  - 06/09/2025, 12:29:19 AM     LOG [Api:EventRepository] Websocket Connect:    wO0ZhFyGJp7WaxjsAAAT
[Nest] 17  - 06/09/2025, 12:29:50 AM     LOG [Api:EventRepository] Websocket Disconnect: wO0ZhFyGJp7WaxjsAAAT
[Nest] 17  - 06/09/2025, 12:30:05 AM     LOG [Api:EventRepository] Websocket Disconnect: nrI2Gn7pB3xXqkWoAAAF
[Nest] 17  - 06/09/2025, 12:30:05 AM     LOG [Api:EventRepository] Websocket Connect:    2pETv6SOOQC7QmTrAAAV
[Nest] 17  - 06/09/2025, 12:31:16 AM     LOG [Api:EventRepository] Websocket Disconnect: 2pETv6SOOQC7QmTrAAAV
[Nest] 17  - 06/09/2025, 12:31:16 AM     LOG [Api:EventRepository] Websocket Connect:    IqNgBCWMW-NkljX5AAAX
[Nest] 17  - 06/09/2025, 12:32:26 AM     LOG [Api:EventRepository] Websocket Disconnect: IqNgBCWMW-NkljX5AAAX
[Nest] 17  - 06/09/2025, 12:32:27 AM     LOG [Api:EventRepository] Websocket Connect:    J5ZuwHziRQaDtMLzAAAZ
[Nest] 17  - 06/09/2025, 12:37:11 AM     LOG [Api:EventRepository] Websocket Disconnect: J5ZuwHziRQaDtMLzAAAZ
[Nest] 17  - 06/09/2025, 12:37:11 AM     LOG [Api:EventRepository] Websocket Connect:    t172TF3bdaYPrQfQAAAb
[Nest] 17  - 06/09/2025, 12:38:36 AM     LOG [Api:EventRepository] Websocket Disconnect: t172TF3bdaYPrQfQAAAb
[Nest] 17  - 06/09/2025, 12:38:37 AM     LOG [Api:EventRepository] Websocket Connect:    TzTgWT6fMLwemEQwAAAd

Additional information

No response

Originally created by @Tech180 on GitHub (Jun 9, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug After updating to v1.134.0 and changing the proper lines in the yaml as instructed the web ui comes up with failed to load assets. However, when loading within the android app it appears that everything loaded just fine. Unfortunately, I didn't notice anything in the docker logs when looking, but i'll provide some anyway. ![Image](https://github.com/user-attachments/assets/a6f03431-f1aa-42da-b7a2-39917fe5663d) ### The OS that Immich Server is running on Debian 12 ### Version of Immich Server v1.134.0 ### Version of Immich Mobile App v1.134.0 ### Platform with the issue - [x] Server - [x] Web - [ ] Mobile ### Your docker-compose.yml content ```YAML 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 ac> volumes: # Do not edit the next line. If you want to change the media storage location on > - ${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.> # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelera> 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:e3b17ba9479deec4b7d1eeec1548a253acc5374d68> healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 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 > - ${DB_DATA_LOCATION}:/var/lib/postgresql/data #healthcheck: # test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || e> # interval: 5m # start_interval: 30s # start_period: 5m #command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_p> restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables at https://immich.app/> # The location where your uploaded files are stored UPLOAD_LOCATION=/mnt/Abundance/photos/ # The location where your database files are stored DB_DATA_LOCATION=./postgres # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from> # TZ=Etc/UTC # 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=postgres # The values below this line do not need to be changed ################################################################################### DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. Change docker-compose.yml 2. Update to 134.0 from v1.132.3 3. reboot container in proxmox ### Relevant log output ```shell Initializing Immich v1.134.0 Detected CPU Cores: 8 Starting api worker Starting microservices worker [Nest] 7 - 06/09/2025, 12:18:50 AM LOG [Microservices:EventRepository] Initialized websocket server [Nest] 7 - 06/09/2025, 12:18:50 AM LOG [Microservices:DatabaseRepository] targetLists=1, current=1 for clip_index of 32994 rows [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:DatabaseRepository] targetLists=1, current=1 for face_index of 61528 rows [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:DatabaseRepository] Running migrations, this may take a while [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:EventRepository] Initialized websocket server [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:MetadataService] Bootstrapping metadata service [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:MetadataService] Initializing metadata service [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:MapRepository] Initializing metadata repository [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:DatabaseRepository] targetLists=1, current=1 for clip_index of 32994 rows [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:DatabaseRepository] targetLists=1, current=1 for face_index of 61528 rows [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:DatabaseRepository] Running migrations, this may take a while [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:MetadataService] Initialized local reverse geocoder [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:ServerService] Feature Flags: { "smartSearch": true, "facialRecognition": true, "duplicateDetection": true, "map": true, "reverseGeocoding": true, "importFaces": false, "sidecar": true, "search": true, "trash": true, "oauth": false, "oauthAutoLaunch": false, "passwordLogin": true, "configFile": false, "email": false } [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}} [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:StorageService] Successfully verified system mount folder checks [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:SystemConfigService] LogLevel=log (set via system config) [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:NestFactory] Starting Nest application... [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] BullModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] ClsModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] ClsCommonModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] OpenTelemetryModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] KyselyModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] KyselyCoreModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] DiscoveryModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] OpenTelemetryCoreModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] ClsRootModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] BullModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] BullModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:InstanceLoader] MicroservicesModule dependencies initialized [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:NestApplication] Nest application successfully started [Nest] 7 - 06/09/2025, 12:18:51 AM LOG [Microservices:Bootstrap] Immich Microservices is running [v1.134.0] [production] [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:ServerService] Feature Flags: { "smartSearch": true, "facialRecognition": true, "duplicateDetection": true, "map": true, "reverseGeocoding": true, "importFaces": false, "sidecar": true, "search": true, "trash": true, "oauth": false, "oauthAutoLaunch": false, "passwordLogin": true, "configFile": false, "email": false } [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:StorageService] Verifying system mount folder checks, current state: {"mountFiles":true,"mountChecks":{"thumbs":true,"upload":true,"backups":true,"library":true,"profile":true,"encoded-video":true}} [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:StorageService] Successfully verified system mount folder checks [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:SystemConfigService] LogLevel=log (set via system config) [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:NestFactory] Starting Nest application... [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] BullModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] ClsModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] ClsCommonModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] OpenTelemetryModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] KyselyModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] KyselyCoreModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] DiscoveryModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] OpenTelemetryCoreModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] ClsRootModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] ScheduleModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] BullModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] BullModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:InstanceLoader] ApiModule dependencies initialized [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] APIKeyController {/api/api-keys}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/api-keys/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] ActivityController {/api/activities}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/activities, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/activities, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/activities/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/activities/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] AlbumController {/api/albums}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, PATCH} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/assets, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/users, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/albums/:id/user/:userId, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] AppController {/api}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/.well-known/immich, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/custom.css, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] AssetController {/api/assets}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/random, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/device/:deviceId, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/jobs, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] AssetMediaController {/api/assets}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/original, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/thumbnail, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/:id/video/playback, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/exist, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/assets/bulk-upload-check, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] AuthController {/api/auth}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/login, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/admin-sign-up, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/validateToken, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/change-password, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/logout, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/status, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/pin-code, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/pin-code, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/pin-code, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/session/unlock, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/auth/session/lock, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] DownloadController {/api/download}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/download/info, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/download/archive, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] DuplicateController {/api/duplicates}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/duplicates, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] FaceController {/api/faces}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/faces, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/faces, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/faces/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/faces/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] JobController {/api/jobs}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/jobs, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/jobs, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/jobs/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] LibraryController {/api/libraries}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/validate, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/libraries/:id/scan, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] MapController {/api/map}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/map/markers, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/map/reverse-geocode, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] MemoryController {/api/memories}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/memories/:id/assets, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] NotificationController {/api/notifications}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/notifications, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/notifications, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/notifications, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/notifications/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/notifications/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/notifications/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] NotificationAdminController {/api/admin/notifications}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/notifications, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/notifications/test-email, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/notifications/templates/:name, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] OAuthController {/api/oauth}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/mobile-redirect, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/authorize, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/callback, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/link, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/oauth/unlink, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] PartnerController {/api/partners}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/partners, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/partners/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] PersonController {/api/people}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/thumbnail, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/reassign, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/people/:id/merge, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] SearchController {/api/search}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/metadata, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/random, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/smart, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/explore, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/person, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/places, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/cities, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/search/suggestions, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] ServerController {/api/server}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/about, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/storage, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/ping, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/version, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/version-history, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/features, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/theme, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/config, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/media-types, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/license, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/license, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/license, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/server/version-check, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] SessionController {/api/sessions}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sessions, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sessions, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sessions, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sessions/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sessions/:id/lock, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] SharedLinkController {/api/shared-links}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/me, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, PATCH} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/shared-links/:id/assets, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] StackController {/api/stacks}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/stacks, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/stacks, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/stacks, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/stacks/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] SyncController {/api/sync}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sync/full-sync, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sync/delta-sync, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sync/stream, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sync/ack, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sync/ack, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/sync/ack, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] SystemConfigController {/api/system-config}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-config, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-config/defaults, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-config, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-config/storage-template-options, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] SystemMetadataController {/api/system-metadata}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/admin-onboarding, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/reverse-geocoding-state, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/system-metadata/version-check-state, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] TagController {/api/tags}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags/assets, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/tags/:id/assets, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] TimelineController {/api/timeline}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/timeline/buckets, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/timeline/bucket, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] TrashController {/api/trash}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/trash/empty, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/trash/restore, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/trash/restore/assets, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] UserAdminController {/api/admin/users}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/statistics, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/preferences, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/admin/users/:id/restore, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] UserController {/api/users}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/preferences, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, PUT} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/me/license, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/:id, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, POST} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/profile-image, DELETE} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/users/:id/profile-image, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RoutesResolver] ViewController {/api/view}: [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/view/folder/unique-paths, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:RouterExplorer] Mapped {/api/view/folder, GET} route [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:NestApplication] Nest application successfully started [Nest] 17 - 06/09/2025, 12:18:51 AM LOG [Api:Bootstrap] Immich Server is listening on http://[::1]:2283 [v1.134.0] [production] [Nest] 17 - 06/09/2025, 12:18:53 AM LOG [Api:EventRepository] Websocket Connect: TfyFBjDZGz5j8mHRAAAB [Nest] 17 - 06/09/2025, 12:19:25 AM LOG [Api:EventRepository] Websocket Connect: vvOp7jTe4xwiOlD7AAAD [Nest] 17 - 06/09/2025, 12:19:38 AM LOG [Api:EventRepository] Websocket Disconnect: vvOp7jTe4xwiOlD7AAAD [Nest] 17 - 06/09/2025, 12:19:38 AM LOG [Api:EventRepository] Websocket Connect: nrI2Gn7pB3xXqkWoAAAF `orderBy(..., expr)` is deprecated. Use `orderBy(..., 'asc')` or `orderBy(..., (ob) => ...)` instead. [Nest] 17 - 06/09/2025, 12:21:58 AM LOG [Api:EventRepository] Websocket Disconnect: TfyFBjDZGz5j8mHRAAAB [Nest] 17 - 06/09/2025, 12:21:58 AM LOG [Api:EventRepository] Websocket Connect: tih1ZnTJlnsttZbvAAAH [Nest] 17 - 06/09/2025, 12:22:00 AM LOG [Api:EventRepository] Websocket Disconnect: tih1ZnTJlnsttZbvAAAH [Nest] 17 - 06/09/2025, 12:22:08 AM LOG [Api:EventRepository] Websocket Connect: _qp5dBobbRkFeyO-AAAJ [Nest] 17 - 06/09/2025, 12:22:33 AM LOG [Api:SystemConfigService~2tktq98e] LogLevel=log (set via system config) [Nest] 7 - 06/09/2025, 12:22:33 AM LOG [Microservices:SystemConfigService] LogLevel=log (set via system config) [Nest] 17 - 06/09/2025, 12:26:49 AM LOG [Api:EventRepository] Websocket Disconnect: _qp5dBobbRkFeyO-AAAJ [Nest] 17 - 06/09/2025, 12:26:50 AM LOG [Api:EventRepository] Websocket Connect: iVDiLoE2_3RQ_huCAAAL [Nest] 17 - 06/09/2025, 12:28:03 AM LOG [Api:EventRepository] Websocket Disconnect: iVDiLoE2_3RQ_huCAAAL [Nest] 17 - 06/09/2025, 12:28:03 AM LOG [Api:EventRepository] Websocket Connect: lCcMkHJp0MaH8eCPAAAN [Nest] 17 - 06/09/2025, 12:28:15 AM LOG [Api:EventRepository] Websocket Disconnect: lCcMkHJp0MaH8eCPAAAN [Nest] 17 - 06/09/2025, 12:28:15 AM LOG [Api:EventRepository] Websocket Connect: sWakDsCmhUoLsaPIAAAP [Nest] 17 - 06/09/2025, 12:28:21 AM LOG [Api:EventRepository] Websocket Disconnect: sWakDsCmhUoLsaPIAAAP [Nest] 17 - 06/09/2025, 12:28:21 AM LOG [Api:EventRepository] Websocket Connect: D6AHk-qcjyiln0oIAAAR [Nest] 17 - 06/09/2025, 12:29:19 AM LOG [Api:EventRepository] Websocket Disconnect: D6AHk-qcjyiln0oIAAAR [Nest] 17 - 06/09/2025, 12:29:19 AM LOG [Api:EventRepository] Websocket Connect: wO0ZhFyGJp7WaxjsAAAT [Nest] 17 - 06/09/2025, 12:29:50 AM LOG [Api:EventRepository] Websocket Disconnect: wO0ZhFyGJp7WaxjsAAAT [Nest] 17 - 06/09/2025, 12:30:05 AM LOG [Api:EventRepository] Websocket Disconnect: nrI2Gn7pB3xXqkWoAAAF [Nest] 17 - 06/09/2025, 12:30:05 AM LOG [Api:EventRepository] Websocket Connect: 2pETv6SOOQC7QmTrAAAV [Nest] 17 - 06/09/2025, 12:31:16 AM LOG [Api:EventRepository] Websocket Disconnect: 2pETv6SOOQC7QmTrAAAV [Nest] 17 - 06/09/2025, 12:31:16 AM LOG [Api:EventRepository] Websocket Connect: IqNgBCWMW-NkljX5AAAX [Nest] 17 - 06/09/2025, 12:32:26 AM LOG [Api:EventRepository] Websocket Disconnect: IqNgBCWMW-NkljX5AAAX [Nest] 17 - 06/09/2025, 12:32:27 AM LOG [Api:EventRepository] Websocket Connect: J5ZuwHziRQaDtMLzAAAZ [Nest] 17 - 06/09/2025, 12:37:11 AM LOG [Api:EventRepository] Websocket Disconnect: J5ZuwHziRQaDtMLzAAAZ [Nest] 17 - 06/09/2025, 12:37:11 AM LOG [Api:EventRepository] Websocket Connect: t172TF3bdaYPrQfQAAAb [Nest] 17 - 06/09/2025, 12:38:36 AM LOG [Api:EventRepository] Websocket Disconnect: t172TF3bdaYPrQfQAAAb [Nest] 17 - 06/09/2025, 12:38:37 AM LOG [Api:EventRepository] Websocket Connect: TzTgWT6fMLwemEQwAAAd ``` ### Additional information _No response_
Author
Owner

@alextran1502 commented on GitHub (Jun 9, 2025):

Which browser are you using, and what version is it? Can you open the developer console (F12) and capture the error message?

@alextran1502 commented on GitHub (Jun 9, 2025): Which browser are you using, and what version is it? Can you open the developer console (F12) and capture the error message?
Author
Owner

@Tech180 commented on GitHub (Jun 9, 2025):

I am using Thorium (Chromium variant) version: 130.0.6723.174 and these are errors I get in the console.

Image

Edit: after trying edge it seems to load properly, so this must be just a problem with the implementation you have with a previous chromium version? I'm not sure why it doesn't work now as it did before.

Also I do want to note that it looks like memories work and load just fine, playback for videos and viewing pictures as well.

Here is the error within the shown code, if this is helpful at all

Image

@Tech180 commented on GitHub (Jun 9, 2025): I am using Thorium (Chromium variant) version: 130.0.6723.174 and these are errors I get in the console. ![Image](https://github.com/user-attachments/assets/8b830b02-9372-45be-b8d0-7c31f2387a77) Edit: after trying edge it seems to load properly, so this must be just a problem with the implementation you have with a previous chromium version? I'm not sure why it doesn't work now as it did before. Also I do want to note that it looks like memories work and load just fine, playback for videos and viewing pictures as well. Here is the error within the shown code, if this is helpful at all ![Image](https://github.com/user-attachments/assets/6ee700f7-ff9c-49a9-835f-f1363726bf4f)
Author
Owner

@jbpfran commented on GitHub (Jun 9, 2025):

I have the same issue.

On an old Firefox version, I have this error :

[handleError]: Failed to load assets TypeError: this.changedDateGroups.difference is not a function
    Immutable 40
 get existingDateGroups@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:7288
addAssets@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:10479
loadBucket/<@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:18987
async*execute@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:1:8553
loadBucket@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:18709
set intersecting@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:8824
#S@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:16009
updateIntersections@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:15326
#f@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:17321
updateOptions@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:16637
async*Rs@http://192.168.11.2:2283/_app/immutable/nodes/18.Dp9u75l7.js:1:7418
Pt/U/</children/K/</children/<@http://192.168.11.2:2283/_app/immutable/entry/app.DWEDcJDX.js:2:2153
B/</a<@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:200
_n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996
Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873
H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919
ir@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8824
B/<@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:193
_n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996
Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873
H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919
Hn@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8781
B@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:150
children@http://192.168.11.2:2283/_app/immutable/entry/app.DWEDcJDX.js:2:2131
lr/</n<@http://192.168.11.2:2283/_app/immutable/chunks/CoZHrGUL.js:1:508
_n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996
Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873
H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919
ir@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8824
lr/<@http://192.168.11.2:2283/_app/immutable/chunks/CoZHrGUL.js:1:500
_n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996
Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873
H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919
Hn@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8781
lr@http://192.168.11.2:2283/_app/immutable/chunks/CoZHrGUL.js:1:460
Rt@http://192.168.11.2:2283/_app/immutable/nodes/2.BuUFPV9Y.js:1:3050
Pt/U/</children/K/<@http://192.168.11.2:2283/_app/immutable/entry/app.DWEDcJDX.js:2:2041
B/</a<@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:200
_n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996
Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873
[GQvkak-N.js:1:612](http://192.168.11.2:2283/_app/immutable/chunks/GQvkak-N.js)

No issue on an up to date version of Firefox.

@jbpfran commented on GitHub (Jun 9, 2025): I have the same issue. On an old Firefox version, I have this error : ``` [handleError]: Failed to load assets TypeError: this.changedDateGroups.difference is not a function Immutable 40 get existingDateGroups@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:7288 addAssets@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:10479 loadBucket/<@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:18987 async*execute@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:1:8553 loadBucket@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:18709 set intersecting@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:8824 #S@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:16009 updateIntersections@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:15326 #f@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:17321 updateOptions@http://192.168.11.2:2283/_app/immutable/chunks/CczS5OG8.js:9:16637 async*Rs@http://192.168.11.2:2283/_app/immutable/nodes/18.Dp9u75l7.js:1:7418 Pt/U/</children/K/</children/<@http://192.168.11.2:2283/_app/immutable/entry/app.DWEDcJDX.js:2:2153 B/</a<@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:200 _n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996 Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873 H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919 ir@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8824 B/<@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:193 _n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996 Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873 H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919 Hn@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8781 B@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:150 children@http://192.168.11.2:2283/_app/immutable/entry/app.DWEDcJDX.js:2:2131 lr/</n<@http://192.168.11.2:2283/_app/immutable/chunks/CoZHrGUL.js:1:508 _n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996 Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873 H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919 ir@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8824 lr/<@http://192.168.11.2:2283/_app/immutable/chunks/CoZHrGUL.js:1:500 _n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996 Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873 H@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:7919 Hn@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:8781 lr@http://192.168.11.2:2283/_app/immutable/chunks/CoZHrGUL.js:1:460 Rt@http://192.168.11.2:2283/_app/immutable/nodes/2.BuUFPV9Y.js:1:3050 Pt/U/</children/K/<@http://192.168.11.2:2283/_app/immutable/entry/app.DWEDcJDX.js:2:2041 B/</a<@http://192.168.11.2:2283/_app/immutable/chunks/DThclZAq.js:1:200 _n@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:11996 Rt@http://192.168.11.2:2283/_app/immutable/chunks/DLxR3QIF.js:1:12873 [GQvkak-N.js:1:612](http://192.168.11.2:2283/_app/immutable/chunks/GQvkak-N.js) ``` No issue on an up to date version of Firefox.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#6239