From d666ae55451cef143bd389fab9d9326e637564ef 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,