mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
Fix: throw correct error in read config
This commit is contained in:
parent
3b0cc8548c
commit
8e10e67b89
1 changed files with 2 additions and 2 deletions
|
@ -121,11 +121,11 @@ func readRawConfig(path string) ([]byte, error) {
|
|||
}
|
||||
|
||||
path = path[:len(path)-5] + ".yml"
|
||||
if _, err = os.Stat(path); err == nil {
|
||||
if _, fallbackErr := os.Stat(path); fallbackErr == nil {
|
||||
return ioutil.ReadFile(path)
|
||||
}
|
||||
|
||||
return data, nil
|
||||
return data, err
|
||||
}
|
||||
|
||||
func readConfig(path string) (*rawConfig, error) {
|
||||
|
|
Loading…
Add table
Reference in a new issue