feat: fix missing extendApplicationWithSigninMethods() in getDefaultApplication() (#3076)

This commit is contained in:
DacongDA 2024-07-24 22:30:15 +08:00 committed by GitHub
parent 3718d2dc04
commit 5629343466
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -356,6 +356,11 @@ func GetDefaultApplication(id string) (*Application, error) {
return nil, err
}
err = extendApplicationWithSigninMethods(defaultApplication)
if err != nil {
return nil, err
}
return defaultApplication, nil
}