Skip to content

Commit ae54ea0

Browse files
committed
Adds missing character for url percent encoding
1 parent 5dcfe18 commit ae54ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/SocketIO/Util/SocketExtensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extension Array {
3838

3939
extension CharacterSet {
4040
static var allowedURLCharacterSet: CharacterSet {
41-
return CharacterSet(charactersIn: "!*'();:@&=+$,/?%#[]\" {}^").inverted
41+
return CharacterSet(charactersIn: "!*'();:@&=+$,/?%#[]\" {}^|").inverted
4242
}
4343
}
4444

0 commit comments

Comments
 (0)