Immich mobile redirect URL won't work after update #218

Closed
opened 2025-12-25 08:26:19 -06:00 by t-lessy · 3 comments
t-lessy commented 2025-12-25 08:26:19 -06:00 (Migrated from github.com)

Describe the bug:

Immich mobile redirect URL (app.immich:///oauth-callback) cannot be put into VoidAuth

To Reproduce:

Update VoidAuth to 1.7.0+ (Unsure, but it's related to my setup)

Expected behavior:

As it should be, URL should be added to VoidAuth, as it described in the guide.

Database Driver:

Postgres 18

Screenshots:

Image

Additional context:

Sorry if I described something bad. Not sure about anything, but "it worked on v1.6.X" and "it is broken on 1.7.0".

services:
  voidauth: 
    image: voidauth/voidauth:latest
    container_name: voidauth
    restart: unless-stopped
    networks:
      - EXTERNAL-ACCESS
      - voidauth
    env_file: .env
    volumes:
      - dir:/app/config
    depends_on:
      voidauth-db:
        condition: service_healthy

  voidauth-db:
    image: postgres:18
    container_name: voidauth-db
    restart: unless-stopped
    networks:
      - voidauth
    env_file: .env
    volumes:
      - dir:/var/lib/postgresql/18/docker
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]  # Specify DB and user
      interval: 10s
      timeout: 5s
      retries: 5
### Describe the bug: Immich mobile redirect URL (app.immich:///oauth-callback) cannot be put into VoidAuth ### To Reproduce: Update VoidAuth to 1.7.0+ (Unsure, but it's related to my setup) ### Expected behavior: As it should be, URL should be added to VoidAuth, as it described in the guide. ### Database Driver: Postgres 18 ### Screenshots: <img width="835" height="151" alt="Image" src="https://github.com/user-attachments/assets/081d5ade-bf1f-48d7-8642-98145572d4c9" /> ### Additional context: Sorry if I described something bad. Not sure about anything, but "it worked on v1.6.X" and "it is broken on 1.7.0". ```compose.yaml services: voidauth: image: voidauth/voidauth:latest container_name: voidauth restart: unless-stopped networks: - EXTERNAL-ACCESS - voidauth env_file: .env volumes: - dir:/app/config depends_on: voidauth-db: condition: service_healthy voidauth-db: image: postgres:18 container_name: voidauth-db restart: unless-stopped networks: - voidauth env_file: .env volumes: - dir:/var/lib/postgresql/18/docker healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"] # Specify DB and user interval: 10s timeout: 5s retries: 5 ```
notquitenothing commented 2025-12-25 11:37:38 -06:00 (Migrated from github.com)

Thanks for opening an issue! This is a regression introduced while adding wildcard support in v1.7.0. I should be able to get a fix out shortly.

Thanks for opening an issue! This is a regression introduced while adding wildcard support in v1.7.0. I should be able to get a fix out shortly.
notquitenothing commented 2025-12-25 19:12:13 -06:00 (Migrated from github.com)

This should be fixed in v1.7.2, let me know if this still does not work for you 🙂

This should be fixed in [v1.7.2](https://github.com/voidauth/voidauth/releases/tag/v1.7.2), let me know if this still does not work for you 🙂
t-lessy commented 2025-12-26 01:05:55 -06:00 (Migrated from github.com)

Now it's working! Thank you! :D

Now it's working! Thank you! :D
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
adam/gate#218
No description provided.