This commit is contained in:
1-6
2023-07-22 07:38:55 +08:00
parent ae09010047
commit 91686cb362
29 changed files with 10158 additions and 390 deletions
+2 -2
View File
@@ -23,10 +23,10 @@ var sleep = func(i int) {
func GetScriptNameByUUID(uuid string) string {
for _, f := range Functions {
if f.UUID == uuid {
return fmt.Sprintf("%s.js", f.Title)
return fmt.Sprintf("%s%s", f.Title, f.Suffix)
}
}
return "未知脚本.js"
return "未知脚本"
}
type SenderJsIplm struct {