mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-10 01:10:42 +03:00
🐛 Bug Report: Login not possible on v1.0.0 #202
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @PsychotherapistSam on GitHub.
Reproduction steps
I have Pocket ID running behind nginxproxymanager and that has worked beautifully so far. After updating to v1.0.0 I get the error described below.
I think I followed everything in the Migration Guide, but still can't get it to work anymore.
Expected behavior
I should be able to log in :D
Actual Behavior
When I log in I get the following error message in the server log:
pocket-id-1 | [GIN] 2025/05/25 - 07:02:33 | 500 | 1.947389ms | 192.168.1.52 | POST "/api/webauthn/login/finish"
pocket-id-1 | Error #01: Failed to lookup Client-side Discoverable Credential: record not found
On the frontend:
"Something went wrong. Please try to sign in again."
And in the browser console:
{"error":"Something went wrong"} for the above 500 API call
Version and Environment
docker-compose.yml
.env
Log Output
No response
@PsychotherapistSam commented on GitHub:
Thank you that was it! :)
@truncsphere commented on GitHub:
I had to change this to get it to work again as well as updating the PUBLIC_APP_URL to APP_URL
@kmendell commented on GitHub:
Change your volume mount from
- ./data:/app/backend/datato- ./data:/app/data. That should fix it for you.