Merge pull request #1 from ag2s20150909/fixConverter
fix converter error
This commit is contained in:
commit
3b878201d0
1 changed files with 5 additions and 2 deletions
|
@ -162,8 +162,11 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) {
|
||||||
if jsonDc.Decode(&values) != nil {
|
if jsonDc.Decode(&values) != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
tempName,ok:=values["ps"].(string)
|
||||||
name := uniqueName(names, values["ps"].(string))
|
if !ok{
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
name := uniqueName(names, tempName)
|
||||||
vmess := make(map[string]any, 20)
|
vmess := make(map[string]any, 20)
|
||||||
|
|
||||||
vmess["name"] = name
|
vmess["name"] = name
|
||||||
|
|
Loading…
Reference in a new issue