Skip to content

Commit 658d5f5

Browse files
committed
1 parent 9224e2b commit 658d5f5

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 13.1.1
2+
3+
- Fix [#923](https://github.com/socketio/socket.io-client-swift/issues/923)
4+
15
# v13.1.0
26

37
- Allow setting `SocketEngineSpec.extraHeaders` after init.

Socket.IO-Client-Swift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Socket.IO-Client-Swift"
33
s.module_name = "SocketIO"
4-
s.version = "13.1.0"
4+
s.version = "13.1.1"
55
s.summary = "Socket.IO-client for iOS and OS X"
66
s.description = <<-DESC
77
Socket.IO-client for iOS and OS X.
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.requires_arc = true
1919
s.source = {
2020
:git => "https://github.com/socketio/socket.io-client-swift.git",
21-
:tag => 'v13.1.0',
21+
:tag => 'v13.1.1',
2222
:submodules => true
2323
}
2424
s.pod_target_xcconfig = {

Source/SocketIO/Manager/SocketManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ open class SocketManager : NSObject, SocketManagerSpec, SocketParsable, SocketDa
205205
return
206206
}
207207

208-
engine?.send("0\(socket.nsp)", withData: [])
208+
engine?.send("0\(socket.nsp),", withData: [])
209209
}
210210

211211
/// Called when the manager has disconnected from socket.io.

0 commit comments

Comments
 (0)