We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b0aa4 commit 0626270Copy full SHA for 0626270
Sources/Encoder.swift
@@ -24,7 +24,7 @@ public struct TLVEncoder {
24
25
let length = UInt8(valueData.count)
26
27
- data += [type, length] + valueData
+ data += Data([type, length]) + valueData
28
}
29
30
return data
0 commit comments