diff --git a/client/tts.go b/client/tts.go index 46b465a5..dc466520 100644 --- a/client/tts.go +++ b/client/tts.go @@ -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 }