From ac16153a275f36c329c76bf628415080b9291ee8 Mon Sep 17 00:00:00 2001 From: Jamie Stackhouse Date: Sun, 15 Jan 2017 07:12:01 -0400 Subject: [PATCH] Update fosite_store_redis.go There was an additional quote on the JSON struct tag. Signed-off-by: Jamie Stackhouse --- oauth2/fosite_store_redis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2/fosite_store_redis.go b/oauth2/fosite_store_redis.go index 1c7740c7be7..186855c8e4c 100644 --- a/oauth2/fosite_store_redis.go +++ b/oauth2/fosite_store_redis.go @@ -24,7 +24,7 @@ type redisSchema struct { RequestedAt time.Time `json:"requestedAt"` Client *client.Client `json:"client"` Scopes fosite.Arguments `json:"scopes"` - GrantedScopes fosite.Arguments `json:"grantedScopes""` + GrantedScopes fosite.Arguments `json:"grantedScopes"` Form url.Values `json:"form"` Session json.RawMessage `json:"session"` }