mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-06 06:33:31 +03:00
Fix: process rule type (#2206)
This commit is contained in:
parent
5497adaba1
commit
65a8e8f59c
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,11 @@ type Process struct {
|
|||
}
|
||||
|
||||
func (ps *Process) RuleType() C.RuleType {
|
||||
return C.Process
|
||||
if ps.nameOnly {
|
||||
return C.Process
|
||||
}
|
||||
|
||||
return C.ProcessPath
|
||||
}
|
||||
|
||||
func (ps *Process) Match(metadata *C.Metadata) bool {
|
||||
|
|
Loading…
Add table
Reference in a new issue