From fc3cd886db4e8df98d6bed489295fdae6063d743 Mon Sep 17 00:00:00 2001 From: bagas Date: Sun, 4 Jan 2026 18:21:34 +0700 Subject: [PATCH] fix: use correct environment variable key --- internal/grpc/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/grpc/client/client.go b/internal/grpc/client/client.go index f056ad7..1aad1d2 100644 --- a/internal/grpc/client/client.go +++ b/internal/grpc/client/client.go @@ -284,7 +284,7 @@ func (c *Client) processEventStream(subscribe grpc.BidiStreamingClient[proto.Nod for _, ses := range sessions { detail := ses.Detail() details = append(details, &proto.Detail{ - Node: config.Getenv("domain", "localhost"), + Node: config.Getenv("DOMAIN", "localhost"), ForwardingType: detail.ForwardingType, Slug: detail.Slug, UserId: detail.UserID,