From 65b4584da8267d212f9f31f9b7f7404a6c9329fe Mon Sep 17 00:00:00 2001 From: Jamie Stackhouse Date: Mon, 16 Jan 2017 05:27:35 -0400 Subject: [PATCH] oauth2: update fosite_store_redis.go (#361) 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"` }