Skip to content

Commit

Permalink
find proxysign from name
Browse files Browse the repository at this point in the history
  • Loading branch information
Geapefurit committed Sep 23, 2024
1 parent 690c64e commit 2f11131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func getProxySign(name string) (*mSign, error) {

if len(name) > 0 {
for _, s := range lmSign {
if strings.EqualFold(s.ctype, name) {
if strings.Contains(s.ctype, name) {
return s, nil
}
}
Expand Down

0 comments on commit 2f11131

Please sign in to comment.