From e67bc3e010a14dac4d50f5a6df81ed375403e3c2 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Tue, 19 Mar 2024 15:02:21 -0600 Subject: [PATCH] Changed cilent ctor to initialize string slices --- internal/oauth/client.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/internal/oauth/client.go b/internal/oauth/client.go index 216764b..5110d49 100644 --- a/internal/oauth/client.go +++ b/internal/oauth/client.go @@ -30,7 +30,11 @@ type Client struct { } func NewClient() *Client { - return &Client{} + return &Client{ + RedirectUris: []string{}, + Scope: []string{}, + Audience: []string{}, + } } func (client *Client) ClearCookies() {