mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-04-03 13:53:34 +03:00
Fix: LoadDefault should not apply dns patch
This commit is contained in:
parent
5f9d4c1572
commit
a7b560b576
1 changed files with 1 additions and 6 deletions
|
@ -9,7 +9,6 @@ import (
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
|
|
||||||
"cfa/native/app"
|
"cfa/native/app"
|
||||||
"github.com/Dreamacro/clash/constant"
|
|
||||||
"github.com/Dreamacro/clash/log"
|
"github.com/Dreamacro/clash/log"
|
||||||
|
|
||||||
"github.com/Dreamacro/clash/config"
|
"github.com/Dreamacro/clash/config"
|
||||||
|
@ -87,11 +86,7 @@ func Load(path string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadDefault() {
|
func LoadDefault() {
|
||||||
rawConfig, _ := config.UnmarshalRawConfig([]byte{})
|
cfg, err := config.Parse([]byte{})
|
||||||
|
|
||||||
_ = patchDns(rawConfig, constant.Path.HomeDir())
|
|
||||||
|
|
||||||
cfg, err := config.ParseRawConfig(rawConfig)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err.Error())
|
panic(err.Error())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue