Skip to content

Commit 9bf0731

Browse files
committed
fix tab issue
1 parent 451f4c1 commit 9bf0731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/SocketIO/Parse/SocketParsable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public extension SocketParsable where Self: SocketManagerSpec & SocketDataBuffer
7777
internal func parseString(_ message: String) throws -> SocketPacket {
7878
var reader = SocketStringReader(message: message)
7979

80-
guard let type = Int(reader.read(count: 1)).flatMap({ SocketPacket.PacketType(rawValue: $0) }) else {
80+
guard let type = Int(reader.read(count: 1)).flatMap({ SocketPacket.PacketType(rawValue: $0) }) else {
8181
throw SocketParsableError.invalidPacketType
8282
}
8383

0 commit comments

Comments
 (0)