We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78bb70f commit 2fb605dCopy full SHA for 2fb605d
encoding.go
@@ -28,6 +28,7 @@ func init() {
28
}
29
30
func encode(src *ID) (dst [SizeEncoded]byte) {
31
+ dst[15] = encoding[src[9]&0x1F]
32
dst[14] = encoding[(src[9]>>5|src[8]<<3)&0x1F]
33
dst[13] = encoding[src[8]>>2&0x1F]
34
dst[12] = encoding[(src[8]>>7|src[7]<<1)&0x1F]
0 commit comments