fantasyding
Results
1
comments of
fantasyding
i solved it like this: edit encode.go in txqr project ```go func (e *Encoder) frame(blockCode int64, total int, data []byte) string { return fmt.Sprintf("%d/%d/%d|%s", blockCode, e.chunkLen, total, base64.StdEncoding.EncodeToString(data)) } ```...