From 331c91deca7ad27cf119fab1334fe4870145e862 Mon Sep 17 00:00:00 2001 From: asafambar Date: Tue, 2 Jan 2024 15:24:47 +0200 Subject: [PATCH] fix --- xray/services/utils/graph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xray/services/utils/graph.go b/xray/services/utils/graph.go index d7c7fb645..9f51ee649 100644 --- a/xray/services/utils/graph.go +++ b/xray/services/utils/graph.go @@ -36,7 +36,7 @@ type GraphNode struct { // Node parent (for internal use) Parent *GraphNode `json:"-"` // Node file types (tar, jar, zip, pom) - Types []string `json:"_"` + Types []string `json:"-"` } func (currNode *GraphNode) NodeHasLoop() bool {