fix: use correct environment variable key
All checks were successful
Docker Build and Push / build-and-push-branches (push) Has been skipped
Docker Build and Push / build-and-push-tags (push) Successful in 4m1s

This commit is contained in:
2026-01-04 18:21:34 +07:00
parent 5edb3c8086
commit d666ae5545

View File

@@ -284,7 +284,7 @@ func (c *Client) processEventStream(subscribe grpc.BidiStreamingClient[proto.Nod
for _, ses := range sessions { for _, ses := range sessions {
detail := ses.Detail() detail := ses.Detail()
details = append(details, &proto.Detail{ details = append(details, &proto.Detail{
Node: config.Getenv("domain", "localhost"), Node: config.Getenv("DOMAIN", "localhost"),
ForwardingType: detail.ForwardingType, ForwardingType: detail.ForwardingType,
Slug: detail.Slug, Slug: detail.Slug,
UserId: detail.UserID, UserId: detail.UserID,