From f8b65fe1f0e4928bbe87bb96973be83d177f1d40 Mon Sep 17 00:00:00 2001 From: Skip R Date: Tue, 25 Nov 2025 14:31:39 -0800 Subject: [PATCH] clarify comment --- pkg/connector/client.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/connector/client.go b/pkg/connector/client.go index 521186a..8bf5d97 100644 --- a/pkg/connector/client.go +++ b/pkg/connector/client.go @@ -126,10 +126,10 @@ func (cl *DiscordClient) connect(ctx context.Context) error { cl.usersFromReady[user.ID] = user } - // We won't have a UserLogin during provisioning, because the UserLogin can - // only be properly constructed once we know what the Discord user ID is - // (i.e. we have returned from this function). Thus, rely on the login - // process calling this method manually. + // NOTE: We won't have a UserLogin during provisioning, because the UserLogin + // can only be properly constructed once we know what the Discord user ID is + // (i.e. we have returned from this function). We'll rely on the login + // process calling this method manually instead. cl.BeginSyncingIfUserLoginPresent(ctx) return nil