Browse Source

Merge pull request #299 from forever8938/master

Load JSON internally by default
Kslr 5 years ago
parent
commit
0dc17643a0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main/distro/all/all.go

+ 2 - 2
main/distro/all/all.go

@@ -59,9 +59,9 @@ import (
 
 	// JSON config support. Choose only one from the two below.
 	// The following line loads JSON from v2ctl
-	_ "v2ray.com/core/main/json"
+	// _ "v2ray.com/core/main/json"
 	// The following line loads JSON internally
-	// _ "v2ray.com/core/main/jsonem"
+	_ "v2ray.com/core/main/jsonem"
 
 	// Load config from file or http(s)
 	_ "v2ray.com/core/main/confloader/external"