mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-01 10:43:25 -04:00
Fix OIDC infinite loop if user is not in OIDC_USER_GROUP (#3487)
This commit is contained in:
@@ -201,7 +201,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function isDirectLogin() {
|
||||
return router.currentRoute.query.direct
|
||||
return Object.keys(router.currentRoute.query).includes("direct")
|
||||
}
|
||||
|
||||
async function oidcAuthenticate() {
|
||||
|
||||
Reference in New Issue
Block a user