Fix typo in oauth error (#23270)

fixes: #23269
This commit is contained in:
John McBride
2020-04-02 00:24:59 -06:00
committed by GitHub
parent 51e485e26b
commit b017e437d8

View File

@ -302,7 +302,7 @@ func checkWhiteList(c *models.ReqContext, host string) bool {
func addOAuthPassThruAuth(c *models.ReqContext, req *http.Request) {
authInfoQuery := &models.GetAuthInfoQuery{UserId: c.UserId}
if err := bus.Dispatch(authInfoQuery); err != nil {
logger.Error("Error feching oauth information for user", "error", err)
logger.Error("Error fetching oauth information for user", "error", err)
return
}