fix(rules): remove unnecessary comments from final rules in configuration files

This commit is contained in:
Chang lue Tsen
2025-04-29 16:19:03 +09:00
parent bbe7b8c223
commit 94416d59a6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ func (c *Clash) Build(uuid string) ([]byte, error) {
})
}
rawConfig.ProxyGroups = groups
rawConfig.Rules = append(c.Rules, "# 最终规则", "MATCH,手动选择")
rawConfig.Rules = append(c.Rules, "MATCH,手动选择")
return yaml.Marshal(&rawConfig)
}