We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb2acc commit 3971502Copy full SHA for 3971502
plugin/music/selecter.go
@@ -61,7 +61,6 @@ func longzhu(keyword string) message.Segment {
61
// 假设 data 是包含整个 JSON 数组的字节切片
62
results := gjson.ParseBytes(data).Array()
63
for _, result := range results {
64
- fmt.Print(result)
65
if strings.Contains(strings.ToLower(result.Get("title").String()), strings.ToLower(keyword)) {
66
if musicURL := result.Get("full_track").String(); musicURL != "" {
67
return message.Record(musicURL)
0 commit comments