mirror of https://github.com/v2ray/v2ray-core
handle error when load point config
parent
5c4095b5d8
commit
507da1a451
|
@ -59,6 +59,10 @@ func LoadConfig(file string) (*Config, error) {
|
|||
|
||||
config := &Config{}
|
||||
err = json.Unmarshal(rawConfig, config)
|
||||
if err != nil {
|
||||
log.Error("Failed to load point config: %v", err)
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if !filepath.IsAbs(config.InboundConfigValue.File) && len(config.InboundConfigValue.File) > 0 {
|
||||
config.InboundConfigValue.File = filepath.Join(filepath.Dir(fixedFile), config.InboundConfigValue.File)
|
||||
|
|
Loading…
Reference in New Issue