mumble: lowercase error messages

This commit is contained in:
s3lph
2022-03-19 17:17:01 +01:00
parent 70c6ca6d0f
commit 6c4c97d379

View File

@@ -49,7 +49,7 @@ func (e *NullAudioEncoder) ID() int {
}
func (e *NullAudioEncoder) Encode(pcm []int16, mframeSize, maxDataBytes int) ([]byte, error) {
return nil, fmt.Errorf("Not implemented")
return nil, fmt.Errorf("not implemented")
}
func (e *NullAudioEncoder) Reset() {
@@ -62,7 +62,7 @@ func (d *NullAudioDecoder) ID() int {
}
func (d *NullAudioDecoder) Decode(data []byte, frameSize int) ([]int16, error) {
return nil, fmt.Errorf("Not implemented")
return nil, fmt.Errorf("not implemented")
}
func (d *NullAudioDecoder) Reset() {