* field rm back quotes

This commit is contained in:
飞哥(fizzday)
2024-04-08 12:08:56 +08:00
parent 25787502fc
commit eaa77d746a

View File

@@ -13,8 +13,8 @@ import (
func BackQuotes(arg any) string {
var tmp []string
if v, ok := arg.(string); ok {
if v == "" {
return ""
if v == "" || v == "*" {
return v
}
split := strings.Split(v, " ")
split2 := strings.Split(split[0], ".")