Change date and time #2068

Closed
opened 2026-02-05 04:58:11 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @Dunny88 on GitHub (Jan 27, 2024).

The bug

When trying to change the date and time of images, once confirmed is pressed nothing happens.

The OS that Immich Server is running on

Debian

Version of Immich Server

1.93.3

Version of Immich Mobile App

1.93.2 .119

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

version: "3.8"

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

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

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

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

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



volumes:
  pgdata:
  model-cache:

Your .env content

DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE_NAME=immich
REDIS_HOSTNAME=immich_redis
UPLOAD_LOCATION=/srv/dev-disk-by-uuid-308eec71-a40c-4235-809d-ff7b86bfadc8/Photos
TYPESENSE_API_KEY=some-random-text
PUBLIC_LOGIN_PAGE_MESSAGE=
IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003

Reproduction steps

1.Click image
2.click info
3.click edit next to date
4. edit time and date
5. click confirm
...

Additional information

No response

Originally created by @Dunny88 on GitHub (Jan 27, 2024). ### The bug When trying to change the date and time of images, once confirmed is pressed nothing happens. ### The OS that Immich Server is running on Debian ### Version of Immich Server 1.93.3 ### Version of Immich Mobile App 1.93.2 .119 ### Platform with the issue - [X] Server - [X] Web - [X] Mobile ### Your docker-compose.yml content ```YAML version: "3.8" services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:release entrypoint: ["/bin/sh", "./start-server.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - stack.env ports: - 2283:3001 depends_on: - redis - database restart: always immich-microservices: container_name: immich_microservices image: ghcr.io/immich-app/immich-server:release entrypoint: ["/bin/sh", "./start-microservices.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - stack.env depends_on: - redis - database restart: always immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:release volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - model-cache:/cache env_file: - stack.env restart: always redis: container_name: immich_redis image: redis:6.2 restart: always database: container_name: immich_postgres image: tensorchord/pgvecto-rs:pg14-v0.1.11 env_file: - stack.env environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} PG_DATA: /var/lib/postgresql/data volumes: - pgdata:/var/lib/postgresql/data restart: always volumes: pgdata: model-cache: ``` ### Your .env content ```Shell DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=postgres DB_DATABASE_NAME=immich REDIS_HOSTNAME=immich_redis UPLOAD_LOCATION=/srv/dev-disk-by-uuid-308eec71-a40c-4235-809d-ff7b86bfadc8/Photos TYPESENSE_API_KEY=some-random-text PUBLIC_LOGIN_PAGE_MESSAGE= IMMICH_WEB_URL=http://immich-web:3000 IMMICH_SERVER_URL=http://immich-server:3001 IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003 ``` ### Reproduction steps ```bash 1.Click image 2.click info 3.click edit next to date 4. edit time and date 5. click confirm ... ``` ### Additional information _No response_
Author
Owner

@aviv926 commented on GitHub (Jan 27, 2024):

I tested both through a browser (Chrome) and through the app, I couldn't reproduce your problem.
Can you try using another browser without extensions?

@aviv926 commented on GitHub (Jan 27, 2024): I tested both through a browser (Chrome) and through the app, I couldn't reproduce your problem. Can you try using another browser without extensions?
Author
Owner

@Dunny88 commented on GitHub (Jan 29, 2024):

I tested both through a browser (Chrome) and through the app, I couldn't reproduce your problem. Can you try using another browser without extensions?

Thank you.

I tried again, and I have figured out the issue. When I start to type in the month the day part of the date goes blank. I have to go back and reinsert the day and then it completes the change without issue.

@Dunny88 commented on GitHub (Jan 29, 2024): > I tested both through a browser (Chrome) and through the app, I couldn't reproduce your problem. Can you try using another browser without extensions? Thank you. I tried again, and I have figured out the issue. When I start to type in the month the day part of the date goes blank. I have to go back and reinsert the day and then it completes the change without issue.
Author
Owner

@aviv926 commented on GitHub (Jan 29, 2024):

I tested both through a browser (Chrome) and through the app, I couldn't reproduce your problem. Can you try using another browser without extensions?

Thank you.

I tried again, and I have figured out the issue. When I start to type in the month the day part of the date goes blank. I have to go back and reinsert the day and then it completes the change without issue.

Glad to here that work for you, you can close this issue now :)

@aviv926 commented on GitHub (Jan 29, 2024): > > I tested both through a browser (Chrome) and through the app, I couldn't reproduce your problem. Can you try using another browser without extensions? > > Thank you. > > I tried again, and I have figured out the issue. When I start to type in the month the day part of the date goes blank. I have to go back and reinsert the day and then it completes the change without issue. Glad to here that work for you, you can close this issue now :)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#2068