We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06b4c16 commit 0676221Copy full SHA for 0676221
Coder Desktop/VPNLib/Receiver.swift
@@ -90,5 +90,5 @@ func deserializeLen(_ data: Data) throws -> UInt32 {
90
if data.count != 4 {
91
throw ReceiveError.invalidLength
92
}
93
- return UInt32(data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3])
+ return UInt32(data[0]) << 24 | UInt32(data[1]) << 16 | UInt32(data[2]) << 8 | UInt32(data[3])
94
0 commit comments