1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-08 04:55:56 +08:00
This commit is contained in:
wdvxdr 2020-09-25 22:14:31 +08:00
parent e8362691b6
commit 6d87095182

View File

@ -40,5 +40,7 @@ func (c *QQClient) GetTts(text string) ([]byte, error) {
}
ttsReader.ReadBytes(2)
}
return ttsWriter.Bytes(), nil
ret := ttsWriter.Bytes()
ret[0] = '\x02'
return ret, nil
}