fix(oauth2): id is int for github

This commit is contained in:
Tine 2024-02-16 15:02:29 +01:00
parent 7b94c72f87
commit 9e237a0b71
Signed by: mentos1386
SSH key fingerprint: SHA256:MNtTsLbihYaWF8j1fkOHfkKNlnN1JQfxEU/rBU8nCGw

View file

@ -16,7 +16,7 @@ import (
)
type UserInfo struct {
Id string `json:"id"`
Id int64 `json:"id"` // FIXME: This might not always be int?
Sub string `json:"sub"`
Email string `json:"email"`
}